diff options
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 |
commit | 2670f9203aeff8b4cd847be3037391171f17e42b (patch) | |
tree | a9b8c64c548d94b9328cda3c4f675a75b73fb0c6 /libraries/openjpeg | |
parent | 68757025f3574351b8aae8bef948e46d9498334a (diff) | |
download | slackbuilds-2670f9203aeff8b4cd847be3037391171f17e42b.tar.gz |
libraries/openjpeg: Fixed for bash4.
Diffstat (limited to 'libraries/openjpeg')
-rw-r--r-- | libraries/openjpeg/openjpeg.SlackBuild | 8 |
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 |