diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:06 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:50:06 -0400 |
commit | 9b4250cb4621d05a7328eddbc674bf8cc0c072d7 (patch) | |
tree | 7c8959d7b339a6328d70a249439d854f28fd56e7 /system/pcmanfm | |
parent | f1aedd22233f3996b9a8b5b3036bb87f78e19651 (diff) | |
download | slackbuilds-9b4250cb4621d05a7328eddbc674bf8cc0c072d7.tar.gz |
system/pcmanfm: Fixed for bash4.
Diffstat (limited to 'system/pcmanfm')
-rw-r--r-- | system/pcmanfm/pcmanfm.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/pcmanfm/pcmanfm.SlackBuild b/system/pcmanfm/pcmanfm.SlackBuild index 42c47a7283..5715d97af5 100644 --- a/system/pcmanfm/pcmanfm.SlackBuild +++ b/system/pcmanfm/pcmanfm.SlackBuild @@ -78,12 +78,8 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -( 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 $DOCS $PKG/usr/doc/$PRGNAM-$VERSION |