]> git.lizzy.rs Git - rust.git/commitdiff
mk: Remove the concept of 'snapshot transitions'
authorBrian Anderson <banderson@mozilla.com>
Fri, 14 Feb 2014 07:25:07 +0000 (23:25 -0800)
committerBrian Anderson <banderson@mozilla.com>
Sat, 15 Feb 2014 01:45:53 +0000 (17:45 -0800)
This way of doing snapshots hasn't been used since 2011.

Makefile.in
configure

index 2bfcd49e7fc4782cedc7a547d9981d8770ea836a..cc5816b248f0e5a6427830397aa6c307277e9360 100644 (file)
@@ -518,18 +518,6 @@ rustc-H-all: $(foreach host,$(CFG_HOST),rustc-H-$(host))
 
 .DEFAULT_GOAL := all
 
-ifneq ($(CFG_IN_TRANSITION),)
-
-CFG_INFO := $(info cfg:)
-CFG_INFO := $(info cfg: *** compiler is in snapshot transition ***)
-CFG_INFO := $(info cfg: *** stage2 and later will not be built ***)
-CFG_INFO := $(info cfg:)
-
-#FIXME This is surely busted
-all: $(SREQ1$(CFG_BUILD)) $(GENERATED) docs
-
-else
-
 define ALL_TARGET_N
 ifneq ($$(findstring $(1),$$(CFG_HOST)),)
 # This is a host
@@ -550,8 +538,6 @@ ALL_TARGET_RULES = $(foreach target,$(CFG_TARGET), \
 
 all: $(ALL_TARGET_RULES) $(GENERATED) docs
 
-endif
-
 
 ######################################################################
 # Re-configuration
index b771e3923ce4561ba0c101cd3538a2a0b49dbf68..de0b7680dcfede2d4fc3d6d94924a6bb5a164c82 100755 (executable)
--- a/configure
+++ b/configure
@@ -1071,12 +1071,6 @@ then
     putvar CFG_PANDOC
 fi
 
-if head -n 1 ${CFG_SRC_DIR}src/snapshots.txt | grep -q '^T'
-then
-    CFG_IN_TRANSITION=1
-    putvar CFG_IN_TRANSITION
-fi
-
 # Valgrind is only reliable on Linux. On Windows it doesn't work at all, and
 # on the Mac the dynamic linker causes Valgrind to emit a huge stream of
 # errors.