From 290b1f489875c1de435e19f7ee7aa0feb792ec4d Mon Sep 17 00:00:00 2001 From: David Somero Date: Wed, 19 May 2010 02:50:48 -0400 Subject: system/wiimms-wbfs-tool: Fixed for bash4. --- system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'system/wiimms-wbfs-tool/wiimms-wbfs-tool.SlackBuild') 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 -- cgit v1.2.3