diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:14 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:14 -0400 |
commit | 5585b387d190525bcbb8f03ca71ac8a91f2888ce (patch) | |
tree | 653928b6c408a455dc22f5fec297a4ed4cde0967 | |
parent | ff7078ac2798918a6a1bbdf43cd8da3766eaf719 (diff) | |
download | slackbuilds-5585b387d190525bcbb8f03ca71ac8a91f2888ce.tar.gz |
libraries/libdmtx: Fixed for bash4.
-rw-r--r-- | libraries/libdmtx/libdmtx.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libdmtx/libdmtx.SlackBuild b/libraries/libdmtx/libdmtx.SlackBuild index 3680b7fa2d..b94676290c 100644 --- a/libraries/libdmtx/libdmtx.SlackBuild +++ b/libraries/libdmtx/libdmtx.SlackBuild @@ -54,12 +54,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 {} \; |