diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:48 -0400 |
commit | 290b1f489875c1de435e19f7ee7aa0feb792ec4d (patch) | |
tree | 09df790ad2baae99dcda5b67ec715e0ec8fd77e9 /system/wiimms-wbfs-tool | |
parent | d171785e3eea3ec726324ebc8a8272121305da3b (diff) | |
download | slackbuilds-290b1f489875c1de435e19f7ee7aa0feb792ec4d.tar.gz |
system/wiimms-wbfs-tool: Fixed for bash4.
Diffstat (limited to 'system/wiimms-wbfs-tool')
-rw-r--r-- | system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild b/system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild index d2c8e72d7a..a5271d8b5e 100644 --- a/system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild +++ b/system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild @@ -75,12 +75,8 @@ sed -i -e "s:s|@@INSTALL-PATH@@|/usr|g;:s|@@INSTALL-PATH@@|$TMP/package-$PRGNAM/ make install # strip binaries -( 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 # Copy over important docs mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |