diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:15 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:15 -0400 |
commit | da80291afc201fcb2a9cef334b8ad1ae6350392c (patch) | |
tree | 6c3492a2387f041a572fa2901a09b5a6622adad9 /libraries/python-musicbrainz2 | |
parent | aea5dc9adb655147b45fe7f8ae2f6b481c0d0fa3 (diff) | |
download | slackbuilds-da80291afc201fcb2a9cef334b8ad1ae6350392c.tar.gz |
libraries/python-musicbrainz2: Fixed for bash4.
Diffstat (limited to 'libraries/python-musicbrainz2')
-rw-r--r-- | libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild b/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild index 168da4ee48..9104463d04 100644 --- a/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild +++ b/libraries/python-musicbrainz2/python-musicbrainz2.SlackBuild @@ -38,12 +38,8 @@ fi 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a *.txt $PKG/usr/doc/$PRGNAM-$VERSION |