[commit: ghc] master: Use directory-style database for bootstrapping database (0899caa)
git at git.haskell.org
git at git.haskell.org
Sat Dec 27 15:56:59 UTC 2014
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/0899caab400e7a095528ea769a7e93a33717ae72/ghc
>---------------------------------------------------------------
commit 0899caab400e7a095528ea769a7e93a33717ae72
Author: Edward Z. Yang <ezyang at cs.stanford.edu>
Date: Sat Dec 27 10:57:30 2014 -0500
Use directory-style database for bootstrapping database
Summary:
This allows GHC HEAD to be bootstrapped using 7.10.
Signed-off-by: Edward Z. Yang <ezyang at cs.stanford.edu>
Test Plan: validate
Reviewers: austin
Subscribers: carter, thomie
Differential Revision: https://phabricator.haskell.org/D589
GHC Trac Issues: #9652
>---------------------------------------------------------------
0899caab400e7a095528ea769a7e93a33717ae72
ghc.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ghc.mk b/ghc.mk
index 6c587bd..0322ba6 100644
--- a/ghc.mk
+++ b/ghc.mk
@@ -726,7 +726,7 @@ ifneq "$(BINDIST)" "YES"
ifneq "$(BOOTSTRAPPING_CONF)" ""
ifeq "$(wildcard $(BOOTSTRAPPING_CONF))" ""
-$(shell echo "[]" >$(BOOTSTRAPPING_CONF))
+$(shell $(GHC_PKG) init $(BOOTSTRAPPING_CONF))
endif
endif
@@ -1233,7 +1233,6 @@ sdist_%:
.PHONY: clean
-CLEAN_FILES += libraries/bootstrapping.conf
CLEAN_FILES += libraries/integer-gmp/cbits/GmpDerivedConstants.h
CLEAN_FILES += libraries/integer-gmp/include/HsIntegerGmp.h
CLEAN_FILES += libraries/integer-gmp2/include/HsIntegerGmp.h
@@ -1262,6 +1261,7 @@ clean_files :
$(call removeTrees,includes/dist-derivedconstants)
$(call removeTrees,inplace/bin)
$(call removeTrees,inplace/lib)
+ $(call removeTrees,libraries/bootstrapping.conf)
.PHONY: clean_libraries
clean_libraries: $(patsubst %,clean_libraries/%_dist-install,$(PACKAGES_STAGE1) $(PACKAGES_STAGE2))
More information about the ghc-commits
mailing list