diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:40 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:40 -0400 |
commit | 4f30520c3c6c944134c2ddf4ff4ff6e265edccea (patch) | |
tree | 11fae95e1e06c45c7c915e51b21ed76c294257d9 /system/uif2iso | |
parent | 83c2df397e31472b3636462c1bc7789272a7d114 (diff) |
system/uif2iso: Fixed for bash4.
Diffstat (limited to 'system/uif2iso')
-rw-r--r-- | system/uif2iso/uif2iso.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/uif2iso/uif2iso.SlackBuild b/system/uif2iso/uif2iso.SlackBuild index 47948cee6290..c9acd46aad31 100644 --- a/system/uif2iso/uif2iso.SlackBuild +++ b/system/uif2iso/uif2iso.SlackBuild @@ -56,12 +56,8 @@ sed -i 's/\/local//g' Makefile 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 || 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |