From 5e2a443ae59e9a8b4268b879e0f285841ea5822e Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Mon, 14 May 2018 00:03:23 +0200 Subject: [PATCH] Minor util-linux build script fixes - Remove extra back slash - The good old "install uses build systems strip tool and it doesn't know what to do with ARM binaries" Signed-off-by: David Oberhollenzer --- pkg/util-linux/build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/util-linux/build b/pkg/util-linux/build index 958dfa6..4310a85 100755 --- a/pkg/util-linux/build +++ b/pkg/util-linux/build @@ -24,7 +24,7 @@ build() { --disable-uuidd --disable-wall --disable-zramctl \ --disable-makeinstall-chown \ --disable-makeinstall-setuid \ - --enable-agetty \ + --enable-agetty make -j $NUMJOBS } @@ -37,7 +37,8 @@ deploy() { mkdir -p "$DEPLOY/var/lib/hwclock" - make DESTDIR="$DEPLOY" install-strip + make DESTDIR="$DEPLOY" install + strip_files ${DEPLOY}/{bin,lib}/* rm -r "$DEPLOY/share/man" "$DEPLOY/share/doc"