summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:37 -0400
committerDavid Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:37 -0400
commit2ba83da4fe791b9c3e21f29a0df46bb3053c151b (patch)
tree9ec6b5a50449d975ffc252f24c8acfd9076d3c2a
parentaa97a7e9e7a09dc91b3ee72eb9a90a363c6c918b (diff)
downloadslackbuilds-2ba83da4fe791b9c3e21f29a0df46bb3053c151b.tar.gz
libraries/haskell-HTTP: Fixed for bash4.
-rw-r--r--libraries/haskell-HTTP/haskell-HTTP.SlackBuild8
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