From c6eef8585027f5a7faac914fed769b3c2457f05d Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 2 Jan 2014 16:06:12 -0800 Subject: [PATCH] MAKE: Changed minimum version of gmake required before warning is issued from 3.81 to 3.80. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index b92f3195..fc66ea8f 100644 --- a/makefile +++ b/makefile @@ -50,7 +50,7 @@ # # CC Command (and platform available options). (Poor man's autoconf) # -ifeq (old,$(shell gmake --version /dev/null 2>&1 | grep 'GNU Make' | awk '{ if ($$3 < "3.82") {print "old"} }')) +ifeq (old,$(shell gmake --version /dev/null 2>&1 | grep 'GNU Make' | awk '{ if ($$3 < "3.81") {print "old"} }')) GMAKE_VERSION = $(shell gmake --version /dev/null 2>&1 | grep 'GNU Make' | awk '{ print $$3 }') $(warning *** Warning *** GNU Make Version $(GMAKE_VERSION) is too old to) $(warning *** Warning *** fully process this makefile)