summaryrefslogtreecommitdiffstats
path: root/libraries/libdmtx
diff options
context:
space:
mode:
author David Somero2010-05-19 08:37:14 +0200
committer David Somero2010-05-19 08:37:14 +0200
commit5585b387d190525bcbb8f03ca71ac8a91f2888ce (patch)
tree653928b6c408a455dc22f5fec297a4ed4cde0967 /libraries/libdmtx
parentff7078ac2798918a6a1bbdf43cd8da3766eaf719 (diff)
downloadslackbuilds-5585b387d190525bcbb8f03ca71ac8a91f2888ce.tar.gz
libraries/libdmtx: Fixed for bash4.
Diffstat (limited to 'libraries/libdmtx')
-rw-r--r--libraries/libdmtx/libdmtx.SlackBuild8
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 {} \;