diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-06-22 16:52:09 +0100 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-06-22 16:52:09 +0100 |
commit | 3ae1bc4790cb182ef29565922011ff539fed000f (patch) | |
tree | 4ca195fdee1acf81ea9d22ce3fc0c88d07f58ffa /libraries/integer-gmp/gmp | |
parent | d238ea4057e7c5e5d262d5ca31bc35b2dabfdd02 (diff) | |
download | haskell-3ae1bc4790cb182ef29565922011ff539fed000f.tar.gz |
Run "sh ./configure" rather than "sh configure"; part of #7992
This fixes a bug with how configure re-execs itself.
Diffstat (limited to 'libraries/integer-gmp/gmp')
-rw-r--r-- | libraries/integer-gmp/gmp/ghc.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/integer-gmp/gmp/ghc.mk b/libraries/integer-gmp/gmp/ghc.mk index b540910521..067e86f7d7 100644 --- a/libraries/integer-gmp/gmp/ghc.mk +++ b/libraries/integer-gmp/gmp/ghc.mk @@ -138,7 +138,7 @@ libraries/integer-gmp/gmp/libgmp.a libraries/integer-gmp/gmp/gmp.h: PATH=`pwd`:$$PATH; \ export PATH; \ cd gmpbuild && \ - CC=$(CC_STAGE1) NM=$(NM) AR=$(AR_STAGE1) $(SHELL) configure \ + CC=$(CC_STAGE1) NM=$(NM) AR=$(AR_STAGE1) $(SHELL) ./configure \ --enable-shared=no \ --host=$(HOSTPLATFORM) --build=$(BUILDPLATFORM) $(MAKE) -C libraries/integer-gmp/gmp/gmpbuild MAKEFLAGS= @@ -158,7 +158,7 @@ libraries/integer-gmp/gmp/libgmp.a libraries/integer-gmp/gmp/gmp.h: # PATH=`pwd`:$$PATH; \ # export PATH; \ # cd gmpbuild-shared && \ -# CC=$(CC_STAGE1) $(SHELL) configure \ +# CC=$(CC_STAGE1) $(SHELL) ./configure \ # --enable-shared=yes --disable-static \ # --host=$(HOSTPLATFORM) --build=$(BUILDPLATFORM) # "$(TOUCH_CMD)" $@ |