diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:35:59 -0400 |
commit | bd1ba38116fa8b18a391544b2e8dbd15351052f3 (patch) | |
tree | a9ed861e7c488a5f522910eede3fe70efef34217 /libraries/edje/edje.SlackBuild | |
parent | 36b82842116c50ba6d5fe9a135efd570d5e46489 (diff) | |
download | slackbuilds-bd1ba38116fa8b18a391544b2e8dbd15351052f3.tar.gz |
libraries/edje: Fixed for bash4.
Diffstat (limited to 'libraries/edje/edje.SlackBuild')
-rw-r--r-- | libraries/edje/edje.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/edje/edje.SlackBuild b/libraries/edje/edje.SlackBuild index 49ee41d751..23f89d2449 100644 --- a/libraries/edje/edje.SlackBuild +++ b/libraries/edje/edje.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 \ |