diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:58 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:46:58 -0400 |
commit | 683591a487bf94bd08d0a2f7eb7d10c95f2d90cb (patch) | |
tree | 03e2300b7e70e7bacf7744fac612504e7c9f7cfa /office/calcurse | |
parent | 6d440b92178d4c1ffd16ddf8159c2344e9dc25ef (diff) |
office/calcurse: Fixed for bash4.
Diffstat (limited to 'office/calcurse')
-rw-r--r-- | office/calcurse/calcurse.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/office/calcurse/calcurse.SlackBuild b/office/calcurse/calcurse.SlackBuild index ea057591323f..e3f557c11eb7 100644 --- a/office/calcurse/calcurse.SlackBuild +++ b/office/calcurse/calcurse.SlackBuild @@ -74,12 +74,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-strip 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 find . -type f -exec gzip -9 {} \; |