diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:25 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:37:25 -0400 |
commit | e31487531e53d0c6c83e1c222f8ef3ca42d5c760 (patch) | |
tree | 3544fb322bd711903c98ed4926a28724c19ae22c /libraries/libgeotiff | |
parent | f74ec23b5ab591944cd1303cb5ea6a716bcbc6c0 (diff) | |
download | slackbuilds-e31487531e53d0c6c83e1c222f8ef3ca42d5c760.tar.gz |
libraries/libgeotiff: Fixed for bash4.
Diffstat (limited to 'libraries/libgeotiff')
-rw-r--r-- | libraries/libgeotiff/libgeotiff.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/libgeotiff/libgeotiff.SlackBuild b/libraries/libgeotiff/libgeotiff.SlackBuild index e111515f6d..c48482d04c 100644 --- a/libraries/libgeotiff/libgeotiff.SlackBuild +++ b/libraries/libgeotiff/libgeotiff.SlackBuild @@ -56,12 +56,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 -) +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 \ |