diff options
author | David Somero | 2010-05-19 08:39:40 +0200 |
---|---|---|
committer | David Somero | 2010-05-19 08:39:40 +0200 |
commit | 32639c858b24bf042972d79b4ac659a2928ea097 (patch) | |
tree | 9a2c11e885044c379ec4df6f33f238fa0abd936b /libraries/xforms | |
parent | 52a57500dc64c106ea6301881d08db6dd8d99aa5 (diff) | |
download | slackbuilds-32639c858b24bf042972d79b4ac659a2928ea097.tar.gz |
libraries/xforms: Fixed for bash4.
Diffstat (limited to 'libraries/xforms')
-rw-r--r-- | libraries/xforms/xforms.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/xforms/xforms.SlackBuild b/libraries/xforms/xforms.SlackBuild index 5cee5da20d..56a7106647 100644 --- a/libraries/xforms/xforms.SlackBuild +++ b/libraries/xforms/xforms.SlackBuild @@ -76,12 +76,8 @@ CXXFLAGS="$SLKCFLAGS" \ make all 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 {} \; |