From b8a8d0550a0798fa822a4ea443a4ec62af0919cc Mon Sep 17 00:00:00 2001 From: ohair Date: Fri, 28 Jan 2011 14:32:02 -0800 Subject: [PATCH] 7014301: Change make 3.81 sanity check to a fatal, 3.81 is needed now Reviewed-by: alanb --- make/common/shared/Sanity.gmk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/common/shared/Sanity.gmk b/make/common/shared/Sanity.gmk index 0cf3433f9..a893e2986 100644 --- a/make/common/shared/Sanity.gmk +++ b/make/common/shared/Sanity.gmk @@ -255,10 +255,10 @@ endif 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 ###################################################### -- GitLab