diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:10 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:10 -0400 |
commit | 7167f8c955cfa8e004dde669f90d14abbc3e1575 (patch) | |
tree | 6618799518e17bd1001df7985ba57a0972217f90 | |
parent | 22ca3246f2754cc7c070ac449c8dc1a16e81d13f (diff) |
libraries/pyicu: Fixed for bash4.
-rw-r--r-- | libraries/pyicu/pyicu.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/pyicu/pyicu.SlackBuild b/libraries/pyicu/pyicu.SlackBuild index 3518377a86ce..8be18b3ab3d5 100644 --- a/libraries/pyicu/pyicu.SlackBuild +++ b/libraries/pyicu/pyicu.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 CHANGES CREDITS LICENSE PKG-INFO README \ |