From 111e0db931f3c7e63ab8f46cd78bed8319cbfe3c Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 11 Feb 2019 18:02:15 +0000 Subject: [PATCH] make: support gmake-3 again. --- iconfig.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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} -- 2.47.2