diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:10 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:10 -0400 |
commit | c610c07b2a877236126d12d02149de6b0f91347a (patch) | |
tree | d81ca367aa937e657d41e2c30ba4569fa1903734 /system/chmsee/chmsee.SlackBuild | |
parent | c06fa45abc40483e708f7b0ca9d8ca1f5d5a6f0a (diff) | |
download | slackbuilds-c610c07b2a877236126d12d02149de6b0f91347a.tar.gz |
system/chmsee: Fixed for bash4.
Diffstat (limited to 'system/chmsee/chmsee.SlackBuild')
-rw-r--r-- | system/chmsee/chmsee.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/chmsee/chmsee.SlackBuild b/system/chmsee/chmsee.SlackBuild index a1f5bb3aca..d9482b2346 100644 --- a/system/chmsee/chmsee.SlackBuild +++ b/system/chmsee/chmsee.SlackBuild @@ -77,12 +77,8 @@ make install DESTDIR=$PKG for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done ) -( 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 cp -a \ |