diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:44:38 -0400 |
commit | daddc65935a35498365018fa6f944d462755fd01 (patch) | |
tree | 6814ce90650d83d7eefcc299bad6dc10509db29f /network/nicotine+ | |
parent | a3caac9323090ff48eaa21577a4eecd35ca4d157 (diff) | |
download | slackbuilds-daddc65935a35498365018fa6f944d462755fd01.tar.gz |
network/nicotine+: Fixed for bash4.
Diffstat (limited to 'network/nicotine+')
-rw-r--r-- | network/nicotine+/nicotine+.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/nicotine+/nicotine+.SlackBuild b/network/nicotine+/nicotine+.SlackBuild index 6908fbe4d6..2596c30101 100644 --- a/network/nicotine+/nicotine+.SlackBuild +++ b/network/nicotine+/nicotine+.SlackBuild @@ -32,12 +32,8 @@ find . \ python setup.py build python setup.py install --root $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 mv $PKG/usr/share/man $PKG/usr ( cd $PKG/usr/man |