diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:58 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:58 -0400 |
commit | 36b82842116c50ba6d5fe9a135efd570d5e46489 (patch) | |
tree | ca5ba591cc107b89be46b4202f2f5c08e33df662 /libraries/ecore | |
parent | a750c54ce51f540864ab2f7ca218bc6f4efb71bf (diff) | |
download | slackbuilds-36b82842116c50ba6d5fe9a135efd570d5e46489.tar.gz |
libraries/ecore: Fixed for bash4.
Diffstat (limited to 'libraries/ecore')
-rw-r--r-- | libraries/ecore/ecore.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/ecore/ecore.SlackBuild b/libraries/ecore/ecore.SlackBuild index 904402589a..2d115872c8 100644 --- a/libraries/ecore/ecore.SlackBuild +++ b/libraries/ecore/ecore.SlackBuild @@ -56,12 +56,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 cp -a \ |