summaryrefslogtreecommitdiffstats
path: root/libraries/haskell-fgl
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:44 +0200
committer David Somero2010-05-19 08:36:44 +0200
commited87119397f915871007f67a512440cec3ca685a (patch)
treebb46cc626e3f3b63831d545be7e51237b389ce9b /libraries/haskell-fgl
parent0c2b9cf0072d93f9d493777e708172d1b9e27936 (diff)
downloadslackbuilds-ed87119397f915871007f67a512440cec3ca685a.tar.gz
libraries/haskell-fgl: Fixed for bash4.
Diffstat (limited to 'libraries/haskell-fgl')
-rw-r--r--libraries/haskell-fgl/haskell-fgl.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/haskell-fgl/haskell-fgl.SlackBuild b/libraries/haskell-fgl/haskell-fgl.SlackBuild
index d0f289fda8..d1f81bb2a8 100644
--- a/libraries/haskell-fgl/haskell-fgl.SlackBuild
+++ b/libraries/haskell-fgl/haskell-fgl.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 doc/CHANGES doc/README $PKG/usr/doc/$PRGNAM-$VERSION