diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:41 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:48:41 -0400 |
commit | 7888e8259bd804795657fd6232a4858564cc79bf (patch) | |
tree | 627398bf6a01d12065c6aa2caf8797b7bfd69bad /system/filelight | |
parent | baaf5bf42d86cab9a48c8891a8b6f794ee27a035 (diff) | |
download | slackbuilds-7888e8259bd804795657fd6232a4858564cc79bf.tar.gz |
system/filelight: Fixed for bash4.
Diffstat (limited to 'system/filelight')
-rw-r--r-- | system/filelight/filelight.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/system/filelight/filelight.SlackBuild b/system/filelight/filelight.SlackBuild index 27afbd4bf4..e19e19f67b 100644 --- a/system/filelight/filelight.SlackBuild +++ b/system/filelight/filelight.SlackBuild @@ -51,12 +51,8 @@ cmake . -DCMAKE_INSTALL_PREFIX=$PKG/usr make make install -( 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 || true -) +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 \ |