diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:17 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:17 -0400 |
commit | b4b47a21398e208dce4fda257883a5b00c82aac7 (patch) | |
tree | 66f8b5ee2f0a14408d96329d60b6c510609fed99 | |
parent | 655c396fac88ebb9d58d2e5c7fb1b774764e164b (diff) | |
download | slackbuilds-b4b47a21398e208dce4fda257883a5b00c82aac7.tar.gz |
system/preload: Fixed for bash4.
-rw-r--r-- | system/preload/preload.SlackBuild | 8 |
1 files 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 |