aboutsummaryrefslogtreecommitdiff
path: root/libraries/pyPdf
diff options
context:
space:
mode:
authorDavid Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:59 -0400
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:59 -0400
commitea32323a6479346b0e5ccfba981492ac5d1b7e02 (patch)
tree7e7c4333538f4c3885d6b4e95441a69b498fe647 /libraries/pyPdf
parent32fa1cdb208e854397ecac43fd39d4cf28ef0ff9 (diff)
downloadslackbuilds-ea32323a6479346b0e5ccfba981492ac5d1b7e02.tar.xz
libraries/pyPdf: Fixed for bash4.
Diffstat (limited to 'libraries/pyPdf')
-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 8511ff063847..ab8ffa0fa569 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