diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:57 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:49:57 -0400 |
commit | 152683cc8dbfae04dec5200bcf83c66ac42e4a61 (patch) | |
tree | f3eb1811d847cb947846893604bf87ad88d59d54 /system/openct/openct.SlackBuild | |
parent | 76898ff2b20038065de9c6d1b7e22bc3d504ca05 (diff) | |
download | slackbuilds-152683cc8dbfae04dec5200bcf83c66ac42e4a61.tar.gz |
system/openct: Fixed for bash4.
Diffstat (limited to 'system/openct/openct.SlackBuild')
-rw-r--r-- | system/openct/openct.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/openct/openct.SlackBuild b/system/openct/openct.SlackBuild index 8f1246997b..8c96ffc4ed 100644 --- a/system/openct/openct.SlackBuild +++ b/system/openct/openct.SlackBuild @@ -161,12 +161,8 @@ chown $USR_GRP $PKG/var/run/openct # Make directory for openct modules (not bundled with openct) mkdir -p $PKG/usr/lib${LIBDIRSUFFIX}/ifd -( 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 ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; |