summaryrefslogtreecommitdiffstats
path: root/libraries
diff options
context:
space:
mode:
author David Somero2010-05-19 08:38:59 +0200
committer David Somero2010-05-19 08:38:59 +0200
commitea32323a6479346b0e5ccfba981492ac5d1b7e02 (patch)
tree7e7c4333538f4c3885d6b4e95441a69b498fe647 /libraries
parent32fa1cdb208e854397ecac43fd39d4cf28ef0ff9 (diff)
downloadslackbuilds-ea32323a6479346b0e5ccfba981492ac5d1b7e02.tar.gz
libraries/pyPdf: Fixed for bash4.
Diffstat (limited to 'libraries')
-rw-r--r--libraries/pyPdf/pyPdf.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/pyPdf/pyPdf.SlackBuild b/libraries/pyPdf/pyPdf.SlackBuild
index 8511ff0638..ab8ffa0fa5 100644
--- a/libraries/pyPdf/pyPdf.SlackBuild
+++ b/libraries/pyPdf/pyPdf.SlackBuild
@@ -53,12 +53,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 $DOCS $PKG/usr/doc/$PRGNAM-$VERSION