diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:10 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:10 -0400 |
commit | 7cbc430eefb01d50b3510467e3e654210610593f (patch) | |
tree | 08a726bbf6606a96836cd8ec96bec801628f993e | |
parent | d5970589584eca9fb40f7908b5d8cd48fdd2523c (diff) |
libraries/frei0r: Fixed for bash4.
-rw-r--r-- | libraries/frei0r/frei0r.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/frei0r/frei0r.SlackBuild b/libraries/frei0r/frei0r.SlackBuild index d479e0f061c6..fb681475d34a 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 |