diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:08 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:08 -0400 |
commit | 7ceba79d45d13c4522617de38f75be128816b52a (patch) | |
tree | 837d89d353a5136b942a9b2bf353be1c11ba21e9 /libraries | |
parent | 5d5c56d40b352f2dae941f61463c91805f0d7b92 (diff) | |
download | slackbuilds-7ceba79d45d13c4522617de38f75be128816b52a.tar.gz |
libraries/fpconst: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/fpconst/fpconst.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/fpconst/fpconst.SlackBuild b/libraries/fpconst/fpconst.SlackBuild index d0ff2a480f..d5b174e034 100644 --- a/libraries/fpconst/fpconst.SlackBuild +++ b/libraries/fpconst/fpconst.SlackBuild @@ -32,12 +32,8 @@ find . \ 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 CHANGELOG COPYING MANIFEST PKG-INFO README $PKG/usr/doc/$PRGNAM-$VERSION |