diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:55 -0400 |
commit | 56e8859f54d522fe61b4066b7c984267e1840646 (patch) | |
tree | 35e107dc95f40065f51cb89de390b34343e66366 /academic/xcircuit/xcircuit.SlackBuild | |
parent | 54cf5286a88b59f009fa3fd76c4420553758f4ac (diff) | |
download | slackbuilds-56e8859f54d522fe61b4066b7c984267e1840646.tar.gz |
academic/xcircuit: Fixed for bash4.
Diffstat (limited to 'academic/xcircuit/xcircuit.SlackBuild')
-rw-r--r-- | academic/xcircuit/xcircuit.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/academic/xcircuit/xcircuit.SlackBuild b/academic/xcircuit/xcircuit.SlackBuild index cc53ae8256..6aab5bca42 100644 --- a/academic/xcircuit/xcircuit.SlackBuild +++ b/academic/xcircuit/xcircuit.SlackBuild @@ -64,12 +64,8 @@ find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chmod 644 {} \; cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | \ - cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null - 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 # Add desktop menu entries |