diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:56 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:38:56 -0400 |
commit | 248c51e1bbdda707ff8fcec1021a7ebb55852191 (patch) | |
tree | 5e56eb9e261c27e89ecd3181b6f20643595e5c4c /libraries/ptlib | |
parent | 8780976b9ac224b2ce2a390c2e308d96764f5bfb (diff) | |
download | slackbuilds-248c51e1bbdda707ff8fcec1021a7ebb55852191.tar.gz |
libraries/ptlib: Fixed for bash4.
Diffstat (limited to 'libraries/ptlib')
-rw-r--r-- | libraries/ptlib/ptlib.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/ptlib/ptlib.SlackBuild b/libraries/ptlib/ptlib.SlackBuild index de14cbb954..b091c0e3de 100644 --- a/libraries/ptlib/ptlib.SlackBuild +++ b/libraries/ptlib/ptlib.SlackBuild @@ -86,12 +86,8 @@ make install DESTDIR=$PKG # Remove static library rm $PKG/usr/lib${LIBDIRSUFFIX}/libpt_s.a -( 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a [A-LN-Z]* mpl-1.0.htm $PKG/usr/doc/$PRGNAM-$VERSION |