diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:02 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:02 -0400 |
commit | 13f4a10bfd5a4db362a13a06d6d3e6b97e71fad0 (patch) | |
tree | 05c7a6a8ef0e877d6f78b777694b47d58626431b | |
parent | c51cb41907c19f34fa7b70f6321a23a1ace1b67f (diff) | |
download | slackbuilds-13f4a10bfd5a4db362a13a06d6d3e6b97e71fad0.tar.gz |
libraries/jbigkit: Fixed for bash4.
-rw-r--r-- | libraries/jbigkit/jbigkit.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/jbigkit/jbigkit.SlackBuild b/libraries/jbigkit/jbigkit.SlackBuild index 83a8650413..193dbc1eb0 100644 --- a/libraries/jbigkit/jbigkit.SlackBuild +++ b/libraries/jbigkit/jbigkit.SlackBuild @@ -48,12 +48,8 @@ cd - # ... and all the rest make CCFLAGS="$SLKCFLAGS" -( 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 # There is no "install" target in the Makefile... |