diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:13 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:13 -0400 |
commit | 8ab703553115217ce1862fb6899644cf82fd6a17 (patch) | |
tree | a474a7be717362f34d4c887c312af490d276bfd1 /network/periscope | |
parent | 8e7571bc74293e4c79a27e1832a8b23a55533b7d (diff) | |
download | slackbuilds-8ab703553115217ce1862fb6899644cf82fd6a17.tar.gz |
network/periscope: Fixed for bash4.
Diffstat (limited to 'network/periscope')
-rw-r--r-- | network/periscope/periscope.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/periscope/periscope.SlackBuild b/network/periscope/periscope.SlackBuild index d52fc1cd35..3502736bd0 100644 --- a/network/periscope/periscope.SlackBuild +++ b/network/periscope/periscope.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 |