diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:01 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:01 -0400 |
commit | 81bab22c7ccc5e9e8fd8d193a45b2fcdbdb712ad (patch) | |
tree | 9a553e30fed351b8e9c84d49462b02cbf72f08a8 | |
parent | 5718602d9c81c3a448b8f16418cde5535ccbc800 (diff) | |
download | slackbuilds-81bab22c7ccc5e9e8fd8d193a45b2fcdbdb712ad.tar.gz |
libraries/pychart: Fixed for bash4.
-rw-r--r-- | libraries/pychart/pychart.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/pychart/pychart.SlackBuild b/libraries/pychart/pychart.SlackBuild index 26fc4b6f4b..89939ad77f 100644 --- a/libraries/pychart/pychart.SlackBuild +++ b/libraries/pychart/pychart.SlackBuild @@ -52,8 +52,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 COPYING PKG-INFO README \ |