diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:18 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:18 -0400 |
commit | 0988c258c5ed6abf7567b724e5e00790d3bbd0bf (patch) | |
tree | 76119dff444185cd59fe9caf4fe8a14a7bcda75f /system | |
parent | 75fc9dc007c869a377d2471d8a2bfdeb462ffdd5 (diff) | |
download | slackbuilds-0988c258c5ed6abf7567b724e5e00790d3bbd0bf.tar.gz |
system/ibam: Fixed for bash4.
Diffstat (limited to 'system')
-rw-r--r-- | system/ibam/ibam.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/ibam/ibam.SlackBuild b/system/ibam/ibam.SlackBuild index ad5f0b1015..390bddbc54 100644 --- a/system/ibam/ibam.SlackBuild +++ b/system/ibam/ibam.SlackBuild @@ -66,12 +66,8 @@ CFLAGS="$SLKCFLAGS" make # need to worry about $LIBDIRSUFFIX install -D -m 0755 $PRGNAM $PKG/usr/bin/$PRGNAM -( 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 # There's no manpages mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |