diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:39:55 -0400 |
commit | 57a60b8f1b347cbb97d591c7ad60e63212ebb632 (patch) | |
tree | dedcfda4a5bf283bb4f89b66df19caa00cb7cb35 /misc/fileinfo | |
parent | bf446da9271cd1cbfb1ced65ff8d09f0ddebbc81 (diff) | |
download | slackbuilds-57a60b8f1b347cbb97d591c7ad60e63212ebb632.tar.gz |
misc/fileinfo: Fixed for bash4.
Diffstat (limited to 'misc/fileinfo')
-rw-r--r-- | misc/fileinfo/fileinfo.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/misc/fileinfo/fileinfo.SlackBuild b/misc/fileinfo/fileinfo.SlackBuild index e201b36c7c..714680d6f7 100644 --- a/misc/fileinfo/fileinfo.SlackBuild +++ b/misc/fileinfo/fileinfo.SlackBuild @@ -38,12 +38,8 @@ CFLAGS="$SLKCFLAGS" \ make make install INSTALL_ROOT=$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 cp -a \ |