summaryrefslogtreecommitdiffstats
path: root/libraries/pytables
diff options
context:
space:
mode:
author David Somero2010-05-19 08:39:12 +0200
committer David Somero2010-05-19 08:39:12 +0200
commitab5646bc81013842a9a40ed2cbe72b34e1795422 (patch)
tree248e8509e74699e150c564225c4510ba747a650a /libraries/pytables
parent1ac52acdf50446f7801013cfc64a3817365db204 (diff)
downloadslackbuilds-ab5646bc81013842a9a40ed2cbe72b34e1795422.tar.gz
libraries/pytables: Fixed for bash4.
Diffstat (limited to 'libraries/pytables')
-rw-r--r--libraries/pytables/pytables.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/pytables/pytables.SlackBuild b/libraries/pytables/pytables.SlackBuild
index 9cd29c9301..75061f53fc 100644
--- a/libraries/pytables/pytables.SlackBuild
+++ b/libraries/pytables/pytables.SlackBuild
@@ -72,12 +72,8 @@ cp -a $DOCFILES $PKG/usr/doc/$PRGNAM-$VERSION
cp $CWD/pytablesmanual-$VERSION.pdf $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-( cd $PKG
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
- xargs strip --strip-unneeded 2> /dev/null || true
- find . | xargs file | grep "executable" | 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/install
cat $CWD/slack-desc > $PKG/install/slack-desc