From 2e27921771abfb13ee56375a2f5c13d6a7a3010a Mon Sep 17 00:00:00 2001 From: Steve Dunham Date: Sat, 27 Apr 2024 14:40:07 -0700 Subject: [PATCH] [ fix ] propagate LDFLAGS and CPPFLAGS to test makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 36556d36a8..1e828cf881 100644 --- a/Makefile +++ b/Makefile @@ -158,7 +158,7 @@ test: testenv @echo "NOTE: \`${MAKE} test\` does not rebuild Idris or the libraries packaged with it; to do that run \`${MAKE}\`" @if [ ! -x "${TARGET}" ]; then echo "ERROR: Missing IDRIS2 executable. Cannot run tests!\n"; exit 1; fi @echo - @${MAKE} -C tests only=$(only) except=$(except) IDRIS2=${TARGET} IDRIS2_PREFIX=${TEST_PREFIX} + @${MAKE} -C tests only=$(only) except=$(except) IDRIS2=${TARGET} IDRIS2_PREFIX=${TEST_PREFIX} CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" retest: testenv