diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:59 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:59 -0400 |
commit | ea32323a6479346b0e5ccfba981492ac5d1b7e02 (patch) | |
tree | 7e7c4333538f4c3885d6b4e95441a69b498fe647 /libraries/pyPdf | |
parent | 32fa1cdb208e854397ecac43fd39d4cf28ef0ff9 (diff) | |
download | slackbuilds-ea32323a6479346b0e5ccfba981492ac5d1b7e02.tar.gz |
libraries/pyPdf: Fixed for bash4.
Diffstat (limited to 'libraries/pyPdf')
-rw-r--r-- | libraries/pyPdf/pyPdf.SlackBuild | 8 |
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 |