summaryrefslogtreecommitdiffstats
path: root/libraries/haskell-xhtml
diff options
context:
space:
mode:
author David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:58 -0400
committer David Somero <xgizzmo@slackbuilds.org>2010-05-19 02:36:58 -0400
commit62712a638a29908314077f839dd29e0dc22b2249 (patch)
treec0c03c0b840a11685a443b662a30380403427715 /libraries/haskell-xhtml
parentb5ca9d187811e560244df12be373675e0797b17e (diff)
downloadslackbuilds-62712a638a29908314077f839dd29e0dc22b2249.tar.gz
slackbuilds-62712a638a29908314077f839dd29e0dc22b2249.tar.xz
libraries/haskell-xhtml: Fixed for bash4.
Diffstat (limited to 'libraries/haskell-xhtml')
-rw-r--r--libraries/haskell-xhtml/haskell-xhtml.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/haskell-xhtml/haskell-xhtml.SlackBuild b/libraries/haskell-xhtml/haskell-xhtml.SlackBuild
index 7594b2e776..b4aa420043 100644
--- a/libraries/haskell-xhtml/haskell-xhtml.SlackBuild
+++ b/libraries/haskell-xhtml/haskell-xhtml.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 $PKG/usr/doc/$PRGNAM-$VERSION