diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:05 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:05 -0400 |
commit | c82844a9999e59491662dbfe923a64bd4fa42361 (patch) | |
tree | 853f7e5d1a4f3133100bb88c799be3aefdfc12d6 /libraries/evas | |
parent | 31c2bcdea0397c3ce25101e655d31f9050656dd0 (diff) | |
download | slackbuilds-c82844a9999e59491662dbfe923a64bd4fa42361.tar.gz |
libraries/evas: Fixed for bash4.
Diffstat (limited to 'libraries/evas')
-rw-r--r-- | libraries/evas/evas.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/evas/evas.SlackBuild b/libraries/evas/evas.SlackBuild index 14604bb5bc..ff2ff978d6 100644 --- a/libraries/evas/evas.SlackBuild +++ b/libraries/evas/evas.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 \ |