diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:48 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:48 -0400 |
commit | d64a928b94f6cd1197a2a6fc3f5a13de64dcc08c (patch) | |
tree | b1b44bb656cc587e1432979c4c371164c9337b56 /network/smb4k | |
parent | 256c67354ddeb09452e465bf7e1853434f01402a (diff) | |
download | slackbuilds-d64a928b94f6cd1197a2a6fc3f5a13de64dcc08c.tar.gz |
network/smb4k: Fixed for bash4.
Diffstat (limited to 'network/smb4k')
-rw-r--r-- | network/smb4k/smb4k.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/smb4k/smb4k.SlackBuild b/network/smb4k/smb4k.SlackBuild index dddb56e31f..2bf7c420a2 100644 --- a/network/smb4k/smb4k.SlackBuild +++ b/network/smb4k/smb4k.SlackBuild @@ -58,12 +58,8 @@ make 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 \ |