From: Roy Marples Date: Mon, 11 Feb 2019 18:02:15 +0000 (+0000) Subject: make: support gmake-3 again. X-Git-Tag: v7.2.0~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=111e0db931f3c7e63ab8f46cd78bed8319cbfe3c;p=thirdparty%2Fdhcpcd.git make: support gmake-3 again. --- diff --git a/iconfig.mk b/iconfig.mk index 465e02ea..50c50340 100644 --- a/iconfig.mk +++ b/iconfig.mk @@ -1,7 +1,8 @@ # Nasty hack so that make clean works without configure being run -# Requires gmake4 TOP?= . _CONFIG_MK!= test -e ${TOP}/config.mk && \ echo config.mk || echo config-null.mk +_CONFIG_MK?= $(shell test -e ${TOP}/config.mk && \ + echo config.mk || echo config-null.mk) CONFIG_MK?= ${_CONFIG_MK} include ${TOP}/${CONFIG_MK}