diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:01 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:01 -0400 |
commit | 7ffdd6d42a98a0eb99177228b521f1bc6df6fbae (patch) | |
tree | a213d2a5601d927fccb9851665d68665114a3a1a /desktop/xpenguins/xpenguins.SlackBuild | |
parent | cc8000cf3c4de6c573e3a7a2c55acd489f4fa31e (diff) |
desktop/xpenguins: Fixed for bash4.
Diffstat (limited to 'desktop/xpenguins/xpenguins.SlackBuild')
-rw-r--r-- | desktop/xpenguins/xpenguins.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/xpenguins/xpenguins.SlackBuild b/desktop/xpenguins/xpenguins.SlackBuild index 00c2f8fea5f2..027b90d24445 100644 --- a/desktop/xpenguins/xpenguins.SlackBuild +++ b/desktop/xpenguins/xpenguins.SlackBuild @@ -52,12 +52,8 @@ CXXFLAGS="$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 || true -) +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 {} \; |