diff options
author | David Somero | 2010-05-19 08:36:37 +0200 |
---|---|---|
committer | David Somero | 2010-05-19 08:36:37 +0200 |
commit | aa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b (patch) | |
tree | e513bacc640aab56e5ebf786602133b111b6dc42 | |
parent | ed09a85e677baf280dec863b93db14ad820c9306 (diff) | |
download | slackbuilds-aa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b.tar.gz |
libraries/gtksourceview: Fixed for bash4.
-rw-r--r-- | libraries/gtksourceview/gtksourceview.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/gtksourceview/gtksourceview.SlackBuild b/libraries/gtksourceview/gtksourceview.SlackBuild index 9553a156b6..f0056eeaac 100644 --- a/libraries/gtksourceview/gtksourceview.SlackBuild +++ b/libraries/gtksourceview/gtksourceview.SlackBuild @@ -74,12 +74,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install-strip 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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a AUTHORS COPYING* ChangeLog* HACKING INSTALL MAINTAINERS NEWS README \ |