[GHC] #8709: `make 1` does not work (well)
GHC
ghc-devs at haskell.org
Fri Jul 10 18:36:35 UTC 2015
#8709: `make 1` does not work (well)
-------------------------------------+-------------------------------------
Reporter: goldfire | Owner:
Type: bug | Status: closed
Priority: normal | Milestone:
Component: Build System | Version: 7.7
Resolution: worksforme | Keywords:
Operating System: Unknown/Multiple | Architecture:
Type of failure: None/Unknown | Unknown/Multiple
Blocked By: | Test Case:
Related Tickets: | Blocking:
| Differential Revisions:
-------------------------------------+-------------------------------------
Changes (by thomie):
* status: new => closed
* resolution: => worksforme
Comment:
I think this bug is fixed in 092082e7583c8170ae41ef8d01a554db34f91bb3. Or
at least it won't give an error anymore when `libraries/integer-
gmp/gmp/config.mk` can't be found.
{{{
--- a/libraries/integer-gmp/gmp/ghc.mk
+++ b/libraries/integer-gmp/gmp/ghc.mk
@@ -47,7 +47,10 @@ endif
ifeq "$(phase)" "final"
ifneq "$(CLEANING)" "YES"
-include libraries/integer-gmp/gmp/config.mk
+# Hack. The file gmp/config.mk doesn't exist yet after running
./configure in
+# the toplevel (ghc) directory. To let some toplevel make commands such
as
+# sdist go through, right after ./configure, don't consider this an
error.
+-include libraries/integer-gmp/gmp/config.mk
endif
}}}
Those 'No such file or directory' lines are perfectly normal.
Please reopen if you're still having problems. Ideally with a way to
reproduce.
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/8709#comment:2>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list