diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:52 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:42:52 -0400 |
commit | e90f51e496d6bfff068c7b1c78abbea5df5b5488 (patch) | |
tree | 03d2cba7e53892522e461ec6805d9651f20c893b /network/ekiga | |
parent | 603ddfc8a734cd5f51a4e3847c0e4e0f910a2320 (diff) | |
download | slackbuilds-e90f51e496d6bfff068c7b1c78abbea5df5b5488.tar.gz |
network/ekiga: Fixed for bash4.
Diffstat (limited to 'network/ekiga')
-rw-r--r-- | network/ekiga/ekiga.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/ekiga/ekiga.SlackBuild b/network/ekiga/ekiga.SlackBuild index cb2a19f956..ebc5ddac15 100644 --- a/network/ekiga/ekiga.SlackBuild +++ b/network/ekiga/ekiga.SlackBuild @@ -125,12 +125,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 -) +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 {} \; |