diff options
author | David Somero | 2010-05-19 08:35:53 +0200 |
---|---|---|
committer | David Somero | 2010-05-19 08:35:53 +0200 |
commit | 8d71be6ba07c4c0f30fa6f053cbe9b4e3857d188 (patch) | |
tree | 267f18107a4e66f9cda93c528c4c679d00788f82 /libraries/cuneiform | |
parent | 50cf911b5d4e2219b900d6e739e0736281999c54 (diff) | |
download | slackbuilds-8d71be6ba07c4c0f30fa6f053cbe9b4e3857d188.tar.gz |
libraries/cuneiform: Fixed for bash4.
Diffstat (limited to 'libraries/cuneiform')
-rw-r--r-- | libraries/cuneiform/cuneiform.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/cuneiform/cuneiform.SlackBuild b/libraries/cuneiform/cuneiform.SlackBuild index 6d1b8d11bd..588ab53382 100644 --- a/libraries/cuneiform/cuneiform.SlackBuild +++ b/libraries/cuneiform/cuneiform.SlackBuild @@ -62,12 +62,8 @@ cd build make install DESTDIR=$PKG cd .. -( 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 \ |