diff options
| author | Ian Lynagh <igloo@earth.li> | 2010-02-15 15:35:40 +0000 |
|---|---|---|
| committer | Ian Lynagh <igloo@earth.li> | 2010-02-15 15:35:40 +0000 |
| commit | cd0cecb3640755a3dda1a49883fa64188af8729a (patch) | |
| tree | f237128b78a55b00802f06797299aa78e8fa65f8 /libraries/integer-gmp/gmp | |
| parent | d7e56c1295bb07fb2b30323e25c2fccfa1886ccd (diff) | |
| download | haskell-cd0cecb3640755a3dda1a49883fa64188af8729a.tar.gz | |
Fix the build
A missing | meant that the build broke on machines that don't have
libgmp available.
Diffstat (limited to 'libraries/integer-gmp/gmp')
| -rw-r--r-- | libraries/integer-gmp/gmp/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/integer-gmp/gmp/ghc.mk b/libraries/integer-gmp/gmp/ghc.mk index 5424dc9148..3e891bcb02 100644 --- a/libraries/integer-gmp/gmp/ghc.mk +++ b/libraries/integer-gmp/gmp/ghc.mk @@ -109,7 +109,7 @@ GMP_DIR := $(patsubst libraries/integer-gmp/gmp/tarball/%-nodoc-patched.tar.bz2, libraries/integer-gmp/gmp/libgmp.a libraries/integer-gmp/gmp/gmp.h: $(RM) -rf $(GMP_DIR) libraries/integer-gmp/gmp/gmpbuild libraries/integer-gmp/gmp/objs - cat $(GMP_TARBALL) | $(BZIP2) -d { cd libraries/integer-gmp/gmp && $(TAR) -xf - ; } + cat $(GMP_TARBALL) | $(BZIP2) -d | { cd libraries/integer-gmp/gmp && $(TAR) -xf - ; } mv libraries/integer-gmp/gmp/$(GMP_DIR) libraries/integer-gmp/gmp/gmpbuild chmod +x libraries/integer-gmp/gmp/ln cd libraries/integer-gmp/gmp; (set -o igncr 2>/dev/null) && set -o igncr; export SHELLOPTS; \ |
