1
0
Fork 0
mirror of https://github.com/pygos/build.git synced 2024-05-11 00:06:14 +02:00

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 <david.oberhollenzer@tele2.at>
This commit is contained in:
David Oberhollenzer 2018-05-14 00:03:23 +02:00
parent e82eda5bef
commit 5e2a443ae5

View file

@ -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"