diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2023-07-30 17:54:09 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-08-05 10:08:47 +0700 |
commit | a618920ebfad48393fcba047ad0a0364d72a056b (patch) | |
tree | 42922069daf5673ce0a40a88604726889ef9f2d3 /system/memory-editor | |
parent | 71b86c05be5a9c7a6b253fc9ad9370dfef3b7bcf (diff) |
system/memory-editor: Fix 32bit build.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/memory-editor')
-rw-r--r-- | system/memory-editor/memory-editor.SlackBuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/system/memory-editor/memory-editor.SlackBuild b/system/memory-editor/memory-editor.SlackBuild index aa83d629dec1..fd79cc507951 100644 --- a/system/memory-editor/memory-editor.SlackBuild +++ b/system/memory-editor/memory-editor.SlackBuild @@ -90,7 +90,9 @@ cd build make install/strip DESTDIR=$PKG cd .. -mv $PKG/usr/lib $PKG/usr/lib${LIBDIRSUFFIX} +if [ -n "${LIBDIRSUFFIX}" ] ; then + mv $PKG/usr/lib $PKG/usr/lib${LIBDIRSUFFIX} +fi rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la |