diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:46 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:46 -0400 |
commit | 89c96db29cbe88c284bace2e05a3c6fec737152d (patch) | |
tree | ae97252e5eb6f4089694fe5b2ae266a1a469c0b0 /desktop | |
parent | 0e3e4a2c58a1f56ecd2b6ebab3290cd530dd39fe (diff) |
desktop/crystal: Fixed for bash4.
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/crystal/crystal.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/crystal/crystal.SlackBuild b/desktop/crystal/crystal.SlackBuild index c7d4e0ce2a86..4a783420636e 100644 --- a/desktop/crystal/crystal.SlackBuild +++ b/desktop/crystal/crystal.SlackBuild @@ -74,12 +74,8 @@ cd build make install VERBOSE=1 DESTDIR=$PKG cd - -( 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 AUTHORS COPYING INSTALL README $PKG/usr/doc/$PRGNAM-$VERSION |