diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:07 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:47:07 -0400 |
commit | e1e6b68f0bc654fa89381356c9a16330e6149753 (patch) | |
tree | 76ca71f0887f60ba23289584eb2f5dec9bcddfcf /office | |
parent | 78d1f50a944f51f4ccdfece8449a642b6ac59f50 (diff) | |
download | slackbuilds-e1e6b68f0bc654fa89381356c9a16330e6149753.tar.gz |
office/gnocky: Fixed for bash4.
Diffstat (limited to 'office')
-rw-r--r-- | office/gnocky/gnocky.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/office/gnocky/gnocky.SlackBuild b/office/gnocky/gnocky.SlackBuild index 1d2e5963b6..984b171731 100644 --- a/office/gnocky/gnocky.SlackBuild +++ b/office/gnocky/gnocky.SlackBuild @@ -80,12 +80,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 -) +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 \ |