summaryrefslogtreecommitdiffstats
path: root/libraries/haskell-haskeline
diff options
context:
space:
mode:
author David Somero2010-05-19 08:36:45 +0200
committer David Somero2010-05-19 08:36:45 +0200
commit9dee86fb1d15f8baf5ca8ab9e081d5007dce4eb6 (patch)
tree3f48829c5316fe504d0a95a00f45a179070cac3a /libraries/haskell-haskeline
parented87119397f915871007f67a512440cec3ca685a (diff)
downloadslackbuilds-9dee86fb1d15f8baf5ca8ab9e081d5007dce4eb6.tar.gz
libraries/haskell-haskeline: Fixed for bash4.
Diffstat (limited to 'libraries/haskell-haskeline')
-rw-r--r--libraries/haskell-haskeline/haskell-haskeline.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/libraries/haskell-haskeline/haskell-haskeline.SlackBuild b/libraries/haskell-haskeline/haskell-haskeline.SlackBuild
index f8dcfe2632..1bc7b9d93b 100644
--- a/libraries/haskell-haskeline/haskell-haskeline.SlackBuild
+++ b/libraries/haskell-haskeline/haskell-haskeline.SlackBuild
@@ -60,12 +60,8 @@ runhaskell Setup.hs haddock
runhaskell Setup.hs copy --destdir=$PKG
runhaskell 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 CHANGES LICENSE $PKG/usr/doc/$PRGNAM-$VERSION