From: Arran Cudbard-Bell Date: Tue, 30 Mar 2021 10:21:23 +0000 (+0100) Subject: Use the $(MAKE) expansion, not `make` else we'll likely end up running the system... X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c4be0ec673785e8bf47cc5ef7bd41757ef5310a;p=thirdparty%2Ffreeradius-server.git Use the $(MAKE) expansion, not `make` else we'll likely end up running the system version of make Which in macos is still 3.81 --- diff --git a/Makefile b/Makefile index 0ddc3affc83..d8e24659694 100644 --- a/Makefile +++ b/Makefile @@ -111,7 +111,7 @@ build/autoconf.mk: src/include/autoconf.h # ifeq "$(findstring clean,$(MAKECMDGOALS))" "" ifeq "$(findstring libfreeradius-make,$(MAKECMDGOALS))" "" -_:=$(shell make libfreeradius-make-dlopen.a libfreeradius-make-version.a) +_:=$(shell $(MAKE) libfreeradius-make-dlopen.a libfreeradius-make-version.a) load build/lib/.libs/libfreeradius-make-dlopen.${LIBRARY_EXT}(dlopen_gmk_setup) load build/lib/.libs/libfreeradius-make-version.${LIBRARY_EXT}(version_gmk_setup)