summaryrefslogtreecommitdiffstats
path: root/libraries/libAfterImage
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:37:06 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:37:06 -0400
commit567767e916ac5ce6a2bbade8d2269ea47dfd493f (patch)
tree3afdb7d251fd731240eea41075bd12e81f347044 /libraries/libAfterImage
parent04619f193ffcd6717d17028b9664184b11619ded (diff)
downloadslackbuilds-567767e916ac5ce6a2bbade8d2269ea47dfd493f.tar.gz
slackbuilds-567767e916ac5ce6a2bbade8d2269ea47dfd493f.tar.xz
libraries/libAfterImage: Fixed for bash4.
Diffstat (limited to 'libraries/libAfterImage')
-rw-r--r--libraries/libAfterImage/libAfterImage.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libAfterImage/libAfterImage.SlackBuild b/libraries/libAfterImage/libAfterImage.SlackBuild
index b16fdd8dcc..afd01294ca 100644
--- a/libraries/libAfterImage/libAfterImage.SlackBuild
+++ b/libraries/libAfterImage/libAfterImage.SlackBuild
@@ -70,12 +70,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 {} \;