diff options
author | Paul Smith <psmith@gnu.org> | 2013-05-22 07:51:46 -0400 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2013-05-22 07:51:46 -0400 |
commit | 8ab3564a711dd3753fb6ad35f16717b01ce830b7 (patch) | |
tree | a51406734b71aa705be5931efbea22c1d1c11e7b /tests/scripts/variables/GNUMAKEFLAGS | |
parent | ecf307bb0b21d3741ef768b98a26e9255158832e (diff) | |
download | gunmake-8ab3564a711dd3753fb6ad35f16717b01ce830b7.tar.gz |
Fix regression tests after MAKEFLAGS enhancements.
Diffstat (limited to 'tests/scripts/variables/GNUMAKEFLAGS')
-rw-r--r-- | tests/scripts/variables/GNUMAKEFLAGS | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/scripts/variables/GNUMAKEFLAGS b/tests/scripts/variables/GNUMAKEFLAGS index 7bfd822..c4df1c1 100644 --- a/tests/scripts/variables/GNUMAKEFLAGS +++ b/tests/scripts/variables/GNUMAKEFLAGS @@ -10,7 +10,7 @@ $extraENV{'GNUMAKEFLAGS'} = '-e -r -R'; run_make_test(q! all: ; @echo $(MAKEFLAGS) !, - '', 'Rre'); + '', 'erR'); # Long arguments mean everything is prefixed with "-" @@ -19,6 +19,6 @@ $extraENV{'GNUMAKEFLAGS'} = '--no-print-directory -e -r -R --trace=none --trace= run_make_test(q! all: ; @echo $(MAKEFLAGS) !, - '', '--no-print-directory --trace=none --trace=dir --trace=none --trace=dir -Rre'); + '', 'erR --trace=none --trace=dir --trace=none --trace=dir --no-print-directory'); 1; |