diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:52 -0400 |
commit | bf446da9271cd1cbfb1ced65ff8d09f0ddebbc81 (patch) | |
tree | 68e24e9b429e3b54b78a191d1566fc6d39161a74 | |
parent | b6ba9c56a729808fd21b905fb5ca0ac969be35f1 (diff) | |
download | slackbuilds-bf446da9271cd1cbfb1ced65ff8d09f0ddebbc81.tar.gz |
misc/figlet: Fixed for bash4.
-rw-r--r-- | misc/figlet/figlet.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/figlet/figlet.SlackBuild b/misc/figlet/figlet.SlackBuild index 4ced545df1..4e220dc691 100644 --- a/misc/figlet/figlet.SlackBuild +++ b/misc/figlet/figlet.SlackBuild @@ -71,12 +71,8 @@ cp figlet chkfont figlist $PKG/usr/bin cp fonts/*.flf fonts/*.flc $PKG/usr/share/figlet cp figlet.6 $PKG/usr/man/man6 -( 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 find . -type f -exec gzip -9 {} \; |