From: Nick Porter Date: Mon, 30 Jan 2023 15:36:37 +0000 (+0000) Subject: uc is a GNU Make Standard Library function, not builtin X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24e2b3661d42674a67ea75583156b3fe1502db6e;p=thirdparty%2Ffreeradius-server.git uc is a GNU Make Standard Library function, not builtin --- diff --git a/src/tests/modules/all.mk b/src/tests/modules/all.mk index e58f7481c06..eb719bd96de 100644 --- a/src/tests/modules/all.mk +++ b/src/tests/modules/all.mk @@ -46,9 +46,9 @@ else ifdef ${1}_require_test_server ifdef TEST_SERVER # define and export FOO_TEST_SERVER if it's not already defined - $(eval export $(call uc, ${1})_TEST_SERVER ?= $(TEST_SERVER)) + $(eval export $(shell echo ${1} | tr a-z A-Z)_TEST_SERVER ?= $(TEST_SERVER)) endif - ifeq "$($(call uc,${1})_TEST_SERVER)" "" + ifeq "$($(shell echo ${1} | tr a-z A-Z)_TEST_SERVER)" "" # the module requires a test server, but we don't have one. Skip it. FILES_SKIP += ${2} endif