diff options
author | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:37 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-19 02:36:37 -0400 |
commit | 2ba83da4fe791b9c3e21f29a0df46bb3053c151b (patch) | |
tree | 9ec6b5a50449d975ffc252f24c8acfd9076d3c2a /libraries/haskell-HTTP | |
parent | aa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b (diff) | |
download | slackbuilds-2ba83da4fe791b9c3e21f29a0df46bb3053c151b.tar.gz |
libraries/haskell-HTTP: Fixed for bash4.
Diffstat (limited to 'libraries/haskell-HTTP')
-rw-r--r-- | libraries/haskell-HTTP/haskell-HTTP.SlackBuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/haskell-HTTP/haskell-HTTP.SlackBuild b/libraries/haskell-HTTP/haskell-HTTP.SlackBuild index a6e0587c79..9e923b1ef6 100644 --- a/libraries/haskell-HTTP/haskell-HTTP.SlackBuild +++ b/libraries/haskell-HTTP/haskell-HTTP.SlackBuild @@ -59,12 +59,8 @@ runghc Setup.lhs haddock runghc Setup.lhs copy --destdir=$PKG runghc Setup.lhs 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 CHANGES LICENSE $PKG/usr/doc/$PRGNAM-$VERSION |