summaryrefslogtreecommitdiffstats
path: root/libraries/enca
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:04 +0200
committer David Somero2010-05-19 08:36:04 +0200
commit31c2bcdea0397c3ce25101e655d31f9050656dd0 (patch)
tree8e40c0ddbeb5a699401463d5fbc575797488f6e0 /libraries/enca
parentb05be32143782e8ba00c05d93fbfdf819f2097ed (diff)
downloadslackbuilds-31c2bcdea0397c3ce25101e655d31f9050656dd0.tar.gz
libraries/enca: Fixed for bash4.
Diffstat (limited to 'libraries/enca')
-rw-r--r--libraries/enca/enca.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/enca/enca.SlackBuild b/libraries/enca/enca.SlackBuild
index 1c3a9d4ee8..1f5ede96de 100644
--- a/libraries/enca/enca.SlackBuild
+++ b/libraries/enca/enca.SlackBuild
@@ -53,12 +53,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
find . -type f -exec gzip -9 {} \;