diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:00 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:00 -0400 |
commit | 4be165c11e55b9770ebdd0bfe26b000e93d54e87 (patch) | |
tree | b204ba42d39a3367e40420f32f2aa6fa278ee69c /libraries/eet/eet.SlackBuild | |
parent | bd1ba38116fa8b18a391544b2e8dbd15351052f3 (diff) | |
download | slackbuilds-4be165c11e55b9770ebdd0bfe26b000e93d54e87.tar.gz |
libraries/eet: Fixed for bash4.
Diffstat (limited to 'libraries/eet/eet.SlackBuild')
-rw-r--r-- | libraries/eet/eet.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/eet/eet.SlackBuild b/libraries/eet/eet.SlackBuild index 5a0d659078..76de714b0e 100644 --- a/libraries/eet/eet.SlackBuild +++ b/libraries/eet/eet.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 \ |