From a618920ebfad48393fcba047ad0a0364d72a056b Mon Sep 17 00:00:00 2001 From: Andrew Clemons Date: Sun, 30 Jul 2023 17:54:09 +0900 Subject: system/memory-editor: Fix 32bit build. Signed-off-by: Andrew Clemons Signed-off-by: Willy Sudiarto Raharjo --- system/memory-editor/memory-editor.SlackBuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/memory-editor/memory-editor.SlackBuild b/system/memory-editor/memory-editor.SlackBuild index aa83d629dec1b..fd79cc507951e 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 -- cgit v1.2.3