diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:43 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:43 -0400 |
commit | 869cd87f5f0f86e172176015a2bab79ea0b04ccf (patch) | |
tree | b524dd24043d257e934670411d77c183b1d31192 /libraries/xulrunner | |
parent | 75f219424e704622b31e401058f16b784f0957a5 (diff) | |
download | slackbuilds-869cd87f5f0f86e172176015a2bab79ea0b04ccf.tar.gz |
libraries/xulrunner: Fixed for bash4.
Diffstat (limited to 'libraries/xulrunner')
-rw-r--r-- | libraries/xulrunner/xulrunner.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/xulrunner/xulrunner.SlackBuild b/libraries/xulrunner/xulrunner.SlackBuild index ee1099c3ee..b2804af6e4 100644 --- a/libraries/xulrunner/xulrunner.SlackBuild +++ b/libraries/xulrunner/xulrunner.SlackBuild @@ -86,12 +86,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 LICENSE LEGAL README.txt $PKG/usr/doc/$PRGNAM-$VERSION |