diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:24 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:24 -0400 |
commit | 82ba19c066965a71155e44dd57cd8b3b5e3a3e39 (patch) | |
tree | 7b5a906e949286b518d841fa1d33776fff2c55b6 /network/pidgin-visnotes | |
parent | 5be2e7a30daa523f716e8ecd71adf8a22bd673b4 (diff) | |
download | slackbuilds-82ba19c066965a71155e44dd57cd8b3b5e3a3e39.tar.gz slackbuilds-82ba19c066965a71155e44dd57cd8b3b5e3a3e39.tar.xz |
network/pidgin-visnotes: Fixed for bash4.
Diffstat (limited to 'network/pidgin-visnotes')
-rw-r--r-- | network/pidgin-visnotes/pidgin-visnotes.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/pidgin-visnotes/pidgin-visnotes.SlackBuild b/network/pidgin-visnotes/pidgin-visnotes.SlackBuild index 0172c4bc041..722f7cd2131 100644 --- a/network/pidgin-visnotes/pidgin-visnotes.SlackBuild +++ b/network/pidgin-visnotes/pidgin-visnotes.SlackBuild @@ -55,12 +55,8 @@ CXXFLAGS="$SLKCFLAGS" \ 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 || true -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG find . -name perllocal.pod \ |