diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:00 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:00 -0400 |
commit | 5718602d9c81c3a448b8f16418cde5535ccbc800 (patch) | |
tree | 342de6af4c2e96bf280c29ecc7f14e829a6fc53e /libraries | |
parent | ea32323a6479346b0e5ccfba981492ac5d1b7e02 (diff) | |
download | slackbuilds-5718602d9c81c3a448b8f16418cde5535ccbc800.tar.gz |
libraries/pybluez: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/pybluez/pybluez.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/pybluez/pybluez.SlackBuild b/libraries/pybluez/pybluez.SlackBuild index 71df76b5cf..c238620dd7 100644 --- a/libraries/pybluez/pybluez.SlackBuild +++ b/libraries/pybluez/pybluez.SlackBuild @@ -63,8 +63,8 @@ find . \ python setup.py install --root=$PKG -find $PKG | xargs file | grep "shared object" | grep ELF | \ - cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +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 CHANGELOG COPYING PKG-INFO README $PKG/usr/doc/$PRGNAM-$VERSION |