summaryrefslogtreecommitdiff
path: root/tests/scripts/variables/GNUMAKEFLAGS
diff options
context:
space:
mode:
Diffstat (limited to 'tests/scripts/variables/GNUMAKEFLAGS')
-rw-r--r--tests/scripts/variables/GNUMAKEFLAGS6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/scripts/variables/GNUMAKEFLAGS b/tests/scripts/variables/GNUMAKEFLAGS
index 6dc9fd8c..69bb0547 100644
--- a/tests/scripts/variables/GNUMAKEFLAGS
+++ b/tests/scripts/variables/GNUMAKEFLAGS
@@ -41,13 +41,13 @@ unlink('x.mk');
# Ensure that we don't add GNUMAKEFLAGS to the environment if it's not there
run_make_test(q!
-all: ; @env | grep GNUMAKEFLAGS; true
+all: ; @#HELPER# env GNUMAKEFLAGS
!,
- '', '');
+ '', 'GNUMAKEFLAGS=<unset>');
$ENV{GNUMAKEFLAGS} = '-Itst/bad';
run_make_test(q!
-all: ; @env | grep GNUMAKEFLAGS; true
+all: ; @#HELPER# env GNUMAKEFLAGS
!,
'', 'GNUMAKEFLAGS=');