summaryrefslogtreecommitdiffstats
path: root/libraries/frei0r
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:10 +0200
committer David Somero2010-05-19 08:36:10 +0200
commit7cbc430eefb01d50b3510467e3e654210610593f (patch)
tree08a726bbf6606a96836cd8ec96bec801628f993e /libraries/frei0r
parentd5970589584eca9fb40f7908b5d8cd48fdd2523c (diff)
downloadslackbuilds-7cbc430eefb01d50b3510467e3e654210610593f.tar.gz
libraries/frei0r: Fixed for bash4.
Diffstat (limited to 'libraries/frei0r')
-rw-r--r--libraries/frei0r/frei0r.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/frei0r/frei0r.SlackBuild b/libraries/frei0r/frei0r.SlackBuild
index d479e0f061..fb681475d3 100644
--- a/libraries/frei0r/frei0r.SlackBuild
+++ b/libraries/frei0r/frei0r.SlackBuild
@@ -80,12 +80,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
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cd $TMP/$PRGNAM-$VERSION