diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:47 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:30:47 -0400 |
commit | 4c23512494270ed15517127448f66114c3e98853 (patch) | |
tree | 9d3987305394f703390ebd149826ada1731a0da7 /academic | |
parent | d885a97cc6d10891c545028295475a5b895a55a6 (diff) | |
download | slackbuilds-4c23512494270ed15517127448f66114c3e98853.tar.gz |
academic/qtoctave: Fixed for bash4.
Diffstat (limited to 'academic')
-rw-r--r-- | academic/qtoctave/qtoctave.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/academic/qtoctave/qtoctave.SlackBuild b/academic/qtoctave/qtoctave.SlackBuild index 9c8f16d38a..f88c5236f8 100644 --- a/academic/qtoctave/qtoctave.SlackBuild +++ b/academic/qtoctave/qtoctave.SlackBuild @@ -76,12 +76,8 @@ cp -a src/qtoctave $PKG/usr/bin find $PKG/usr/share -type f -exec chmod 0644 {} \; find $PKG/usr/share -type d -exec chmod 0755 {} \; -( 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 leeme.txt news.txt LICENSE_GPL.txt readme.txt \ |