summaryrefslogtreecommitdiffstats
path: root/libraries/openjpeg/openjpeg.SlackBuild
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:30 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:38:30 -0400
commit2670f9203aeff8b4cd847be3037391171f17e42b (patch)
treea9b8c64c548d94b9328cda3c4f675a75b73fb0c6 /libraries/openjpeg/openjpeg.SlackBuild
parent68757025f3574351b8aae8bef948e46d9498334a (diff)
downloadslackbuilds-2670f9203aeff8b4cd847be3037391171f17e42b.tar.gz
slackbuilds-2670f9203aeff8b4cd847be3037391171f17e42b.tar.xz
libraries/openjpeg: Fixed for bash4.
Diffstat (limited to 'libraries/openjpeg/openjpeg.SlackBuild')
-rw-r--r--libraries/openjpeg/openjpeg.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/openjpeg/openjpeg.SlackBuild b/libraries/openjpeg/openjpeg.SlackBuild
index b2e85a93da..106e4753a4 100644
--- a/libraries/openjpeg/openjpeg.SlackBuild
+++ b/libraries/openjpeg/openjpeg.SlackBuild
@@ -77,12 +77,8 @@ cd -
mkdir -p $PKG/usr/include
mv $PKG/openjpeg $PKG/usr/include/
-( 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 ChangeLog license.txt README* $PKG/usr/doc/$PRGNAM-$VERSION