summaryrefslogtreecommitdiffstats
path: root/system/pcmanfm
diff options
context:
space:
mode:
author David Somero2010-05-19 08:50:06 +0200
committer David Somero2010-05-19 08:50:06 +0200
commit9b4250cb4621d05a7328eddbc674bf8cc0c072d7 (patch)
tree7c8959d7b339a6328d70a249439d854f28fd56e7 /system/pcmanfm
parentf1aedd22233f3996b9a8b5b3036bb87f78e19651 (diff)
downloadslackbuilds-9b4250cb4621d05a7328eddbc674bf8cc0c072d7.tar.gz
system/pcmanfm: Fixed for bash4.
Diffstat (limited to 'system/pcmanfm')
-rw-r--r--system/pcmanfm/pcmanfm.SlackBuild8
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