7014301: Change make 3.81 sanity check to a fatal, 3.81 is needed now
authorohair
Fri, 28 Jan 2011 14:32:02 -0800
changeset 8081 f2598ae01a50
parent 8021 36c1b927209d
child 8082 f8d6081dd61d
7014301: Change make 3.81 sanity check to a fatal, 3.81 is needed now Reviewed-by: alanb
jdk/make/common/shared/Sanity.gmk
--- a/jdk/make/common/shared/Sanity.gmk	Thu Jan 27 18:43:47 2011 -0800
+++ b/jdk/make/common/shared/Sanity.gmk	Fri Jan 28 14:32:02 2011 -0800
@@ -255,10 +255,10 @@
 MAKE_CHECK :=$(call CheckVersions,$(MAKE_VER),$(REQUIRED_MAKE_VER))
 sane-make:
 	@if [ "$(MAKE_CHECK)" != "same" -a "$(MAKE_CHECK)" != "newer" ]; then \
-	  $(ECHO) "WARNING: The version of make being used is older than \n" \
+	  $(ECHO) "ERROR: The version of make being used is older than \n" \
 	    "      the required version of '$(REQUIRED_MAKE_VER)'. \n" \
 	    "      The version of make found was '$(MAKE_VER)'. \n" \
-	    "" >> $(WARNING_FILE) ; \
+	    "" >> $(ERROR_FILE) ; \
 	fi
 
 ######################################################