diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:33:06 -0400 |
commit | e0998e10496ab7f663037aa941d0d41b0cde4115 (patch) | |
tree | 8add7e9087887f54c92df16bcad78f442e27d3d2 | |
parent | 5dc479eaadf0f271b29d6cdb056fb7ff63faa8a3 (diff) | |
download | slackbuilds-e0998e10496ab7f663037aa941d0d41b0cde4115.tar.gz |
development/Pivy: Fixed for bash4.
-rwxr-xr-x | development/Pivy/Pivy.SlackBuild | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/development/Pivy/Pivy.SlackBuild b/development/Pivy/Pivy.SlackBuild index 0874b721f8..1117275175 100755 --- a/development/Pivy/Pivy.SlackBuild +++ b/development/Pivy/Pivy.SlackBuild @@ -54,10 +54,8 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ 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 || 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/usr/doc/$PRGNAM-$VERSION cp -a \ |