diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:55 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:45:55 -0400 |
commit | 6b3fd3976c66980c421e162375081cdaf0ca9c3a (patch) | |
tree | 0ef659622ff08df8758ee159b1d85d31ad69ccb8 /network/strongswan | |
parent | febefe5355037967df5f66eae4ed0d92c52bebef (diff) | |
download | slackbuilds-6b3fd3976c66980c421e162375081cdaf0ca9c3a.tar.gz |
network/strongswan: Fixed for bash4.
Diffstat (limited to 'network/strongswan')
-rw-r--r-- | network/strongswan/strongswan.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/network/strongswan/strongswan.SlackBuild b/network/strongswan/strongswan.SlackBuild index 38ce727f4c..a76925378e 100644 --- a/network/strongswan/strongswan.SlackBuild +++ b/network/strongswan/strongswan.SlackBuild @@ -76,12 +76,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/usr/man rm man8/starter* |