summaryrefslogtreecommitdiffstats
path: root/libraries/fpconst
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:08 +0200
committer David Somero2010-05-19 08:36:08 +0200
commit7ceba79d45d13c4522617de38f75be128816b52a (patch)
tree837d89d353a5136b942a9b2bf353be1c11ba21e9 /libraries/fpconst
parent5d5c56d40b352f2dae941f61463c91805f0d7b92 (diff)
downloadslackbuilds-7ceba79d45d13c4522617de38f75be128816b52a.tar.gz
libraries/fpconst: Fixed for bash4.
Diffstat (limited to 'libraries/fpconst')
-rw-r--r--libraries/fpconst/fpconst.SlackBuild8
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