diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:32 -0400 |
commit | 85491923feacb8d0b9754451036531836a3f3eb9 (patch) | |
tree | fd14495755e57afa9725cc86361cabc196b71536 /libraries/libiec61883 | |
parent | 8533a0baf42bb5d67a52b434926ac287be1443db (diff) | |
download | slackbuilds-85491923feacb8d0b9754451036531836a3f3eb9.tar.gz |
libraries/libiec61883: Fixed for bash4.
Diffstat (limited to 'libraries/libiec61883')
-rw-r--r-- | libraries/libiec61883/libiec61883.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libiec61883/libiec61883.SlackBuild b/libraries/libiec61883/libiec61883.SlackBuild index 4b05762a6b..d35d743e56 100644 --- a/libraries/libiec61883/libiec61883.SlackBuild +++ b/libraries/libiec61883/libiec61883.SlackBuild @@ -70,12 +70,8 @@ CFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( 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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |