diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:48 -0400 |
commit | 496d199b3b0a8843f0180f59cced16e1d71f6738 (patch) | |
tree | 82ea6d9ea46291f8bbd2e05971c4aecddd0eb84a /system/mktorrent | |
parent | b782966cca95618ecfd83a4f3cade38989f19bdb (diff) | |
download | slackbuilds-496d199b3b0a8843f0180f59cced16e1d71f6738.tar.gz |
system/mktorrent: Fixed for bash4.
Diffstat (limited to 'system/mktorrent')
-rw-r--r-- | system/mktorrent/mktorrent.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/mktorrent/mktorrent.SlackBuild b/system/mktorrent/mktorrent.SlackBuild index b1667c80a0..db47411673 100644 --- a/system/mktorrent/mktorrent.SlackBuild +++ b/system/mktorrent/mktorrent.SlackBuild @@ -45,12 +45,8 @@ mkdir -p $PKG/usr/bin cat mktorrent > $PKG/usr/bin/mktorrent chmod 0755 $PKG/usr/bin/mktorrent -( 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 CHANGES LICENSE $PKG/usr/doc/$PRGNAM-$VERSION |