diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:38 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:38 -0400 |
commit | 2dcd9363c7670b32c656561a009b8717d7e6b1a1 (patch) | |
tree | d882ee70a1557e11ec3f696d3c763bf8989f7813 | |
parent | 2ba83da4fe791b9c3e21f29a0df46bb3053c151b (diff) | |
download | slackbuilds-2dcd9363c7670b32c656561a009b8717d7e6b1a1.tar.gz |
libraries/haskell-HUnit: Fixed for bash4.
-rw-r--r-- | libraries/haskell-HUnit/haskell-HUnit.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/haskell-HUnit/haskell-HUnit.SlackBuild b/libraries/haskell-HUnit/haskell-HUnit.SlackBuild index 41fcddf382..b72537b542 100644 --- a/libraries/haskell-HUnit/haskell-HUnit.SlackBuild +++ b/libraries/haskell-HUnit/haskell-HUnit.SlackBuild @@ -59,12 +59,8 @@ runghc Setup.hs haddock runghc Setup.hs copy --destdir=$PKG runghc Setup.hs register --gen-script -( 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 LICENSE README doc/Guide.html $PKG/usr/doc/$PRGNAM-$VERSION |