diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:43:15 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:43:15 -0400 |
commit | e3b460d6ab6cadc1da69cdaf4e231caa3c356119 (patch) | |
tree | 1290672c50b00eeab49fa86e679ad57f4558662f /network/fqterm | |
parent | 6285080856dbe5ce611d74e76bf3d13653531f10 (diff) |
network/fqterm: Fixed for bash4.
Diffstat (limited to 'network/fqterm')
-rw-r--r-- | network/fqterm/fqterm.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/fqterm/fqterm.SlackBuild b/network/fqterm/fqterm.SlackBuild index d0a443077445..c4d1ad73bd19 100644 --- a/network/fqterm/fqterm.SlackBuild +++ b/network/fqterm/fqterm.SlackBuild @@ -53,12 +53,8 @@ cd build make install DESTDIR=$PKG cd - -( 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 LICENSE INSTALL.txt README.txt $PKG/usr/doc/$PRGNAM-$VERSION |