summaryrefslogtreecommitdiffstats
path: root/libraries/gtksourceview
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:37 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:37 -0400
commitaa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b (patch)
treee513bacc640aab56e5ebf786602133b111b6dc42 /libraries/gtksourceview
parented09a85e677baf280dec863b93db14ad820c9306 (diff)
downloadslackbuilds-aa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b.tar.gz
slackbuilds-aa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b.tar.xz
libraries/gtksourceview: Fixed for bash4.
Diffstat (limited to 'libraries/gtksourceview')
-rw-r--r--libraries/gtksourceview/gtksourceview.SlackBuild8
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 \