diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:19 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:19 -0400 |
commit | 308acc50bc546109df7e3791ad362329df9210d2 (patch) | |
tree | fcd10da9243a5766a143b5b239c187b8e4223396 /system | |
parent | a03a11edc4e6566e96e156fc8f5522720c6cbb5d (diff) | |
download | slackbuilds-308acc50bc546109df7e3791ad362329df9210d2.tar.gz |
system/pwsafe: Fixed for bash4.
Diffstat (limited to 'system')
-rw-r--r-- | system/pwsafe/pwsafe.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/pwsafe/pwsafe.SlackBuild b/system/pwsafe/pwsafe.SlackBuild index 1704951e40..7ff34e42c5 100644 --- a/system/pwsafe/pwsafe.SlackBuild +++ b/system/pwsafe/pwsafe.SlackBuild @@ -49,12 +49,8 @@ CFLAGS="$SLKCFLAGS" \ make make install 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 ( cd $PKG/usr/man || exit 1 find . -type f -exec gzip -9 {} \; |