diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:31:41 -0400 |
commit | aaf3b3aa5cbe25bdc526781de7ac3d43b62d8db8 (patch) | |
tree | ef74c44c169bf033d612a677a1908242d5617238 /desktop/QtCurve-KDE4 | |
parent | 2bf3317023607307bd37d68e16f440e477b77499 (diff) | |
download | slackbuilds-aaf3b3aa5cbe25bdc526781de7ac3d43b62d8db8.tar.gz |
desktop/QtCurve-KDE4: Fixed for bash4.
Diffstat (limited to 'desktop/QtCurve-KDE4')
-rw-r--r-- | desktop/QtCurve-KDE4/QtCurve-KDE4.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/desktop/QtCurve-KDE4/QtCurve-KDE4.SlackBuild b/desktop/QtCurve-KDE4/QtCurve-KDE4.SlackBuild index 709b828203..cf9c248dcb 100644 --- a/desktop/QtCurve-KDE4/QtCurve-KDE4.SlackBuild +++ b/desktop/QtCurve-KDE4/QtCurve-KDE4.SlackBuild @@ -77,12 +77,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 COPYING ChangeLog README TODO $PKG/usr/doc/$PRGNAM-$VERSION |