Skip to content
Snippets Groups Projects
Commit db71ecda authored by Austin Seipp's avatar Austin Seipp
Browse files

fix mk/build.mk for HaveLibGmp/HaveFrameworkGMP

Previously if you were to set HaveFrameworkGMP/HaveLibGmp in
mk/build.mk (e.g. on mac os) the settings would be ignored, as
gmp/config.mk is included late in GHC's ghc.mk, meaning autoconf
overrides your settings. Now they ignore the values picked up by 
configure if you set these variables.
parent 74453b26
No related branches found
No related tags found
No related merge requests found
HaveLibGmp = @HaveLibGmp@
HaveFrameworkGMP = @HaveFrameworkGMP@
ifeq ($(HaveLibGmp),"")
HaveLibGmp = @HaveLibGmp@
endif
ifeq ($(HaveFrameworkGMP),"")
HaveFrameworkGMP = @HaveFrameworkGMP@
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment