From b4b47a21398e208dce4fda257883a5b00c82aac7 Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:50:17 -0400 Subject: system/preload: Fixed for bash4. --- system/preload/preload.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/system/preload/preload.SlackBuild b/system/preload/preload.SlackBuild index 46f1bd035e..657eae8f0e 100644 --- a/system/preload/preload.SlackBuild +++ b/system/preload/preload.SlackBuild @@ -75,12 +75,8 @@ make install \ pkgdocdir=/usr/doc/$PRGNAM-$VERSION \ DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ - xargs strip --strip-unneeded 2> /dev/null -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true # Create the lockfile directory # We'll use /var/run/preload instead of /var/lock/subsys, so that a stale -- cgit v1.2.3