diff options
author | Paul Smith <psmith@gnu.org> | 2010-07-01 07:16:00 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2010-07-01 07:16:00 +0000 |
commit | 97f106fa105b5d776fb0d6ce3b60493d25f825f4 (patch) | |
tree | 9cf631098d2192cc794e46ade74789daca21ea9e /tests | |
parent | 7746a1f74fa7696452a3c25953c7fb9a5feb5a6c (diff) | |
download | gunmake-97f106fa105b5d776fb0d6ce3b60493d25f825f4.tar.gz |
- Add whitespace to command line invocation in features/recursion
- Set up .FEATURES with separate calls for optional features, as some
compilers don't like conditionals inside macro invocations.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ChangeLog | 7 | ||||
-rw-r--r-- | tests/scripts/features/recursion | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/tests/ChangeLog b/tests/ChangeLog index eaacaec..c8f3aab 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,8 @@ +2010-07-01 Paul Smith <psmith@gnu.org> + + * scripts/features/recursion: Add a space to separate command-line + args. Fixes Savannah bug #29968. + 2009-11-12 Boris Kolpackov <boris@codesynthesis.com> * scripts/features/vpath3: Test for the new library search @@ -6,7 +11,7 @@ 2009-10-06 Boris Kolpackov <boris@codesynthesis.com> * scripts/features/se_explicit: Enable the test for now fixed - savannah bug 25780. + Savannah bug 25780. 2009-10-06 Boris Kolpackov <boris@codesynthesis.com> diff --git a/tests/scripts/features/recursion b/tests/scripts/features/recursion index b9dfd4f..a6b8f90 100644 --- a/tests/scripts/features/recursion +++ b/tests/scripts/features/recursion @@ -16,7 +16,7 @@ last: @echo MAKELEVEL = $(MAKELEVEL) @echo THE END ', - ('CFLAGS=-O -w' . ($parallel_jobs ? '-j 2' : '')), + ('CFLAGS=-O -w' . ($parallel_jobs ? ' -j 2' : '')), ($vos ? "#MAKE#: Entering directory `#PWD#' make 'CFLAGS=-O' -f #MAKEFILE# foo |