diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:32 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:32 -0400 |
commit | 5317df24d5b398f96975bf6dac7ade6a92d9fb1e (patch) | |
tree | 4dd3b81819fa6878d9052e9735ccff1e2c6b6760 /libraries/gtkglext | |
parent | 73f85368c0b4798409880d3d44418c642dbe0e80 (diff) | |
download | slackbuilds-5317df24d5b398f96975bf6dac7ade6a92d9fb1e.tar.gz slackbuilds-5317df24d5b398f96975bf6dac7ade6a92d9fb1e.tar.xz |
libraries/gtkglext: Fixed for bash4.
Diffstat (limited to 'libraries/gtkglext')
-rw-r--r-- | libraries/gtkglext/gtkglext.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gtkglext/gtkglext.SlackBuild b/libraries/gtkglext/gtkglext.SlackBuild index 3a69d33e9b7..e4e64f72c1e 100644 --- a/libraries/gtkglext/gtkglext.SlackBuild +++ b/libraries/gtkglext/gtkglext.SlackBuild @@ -73,12 +73,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 AUTHORS COPYING* ChangeLog NEWS README TODO \ |