mirror of
https://github.com/mirror/make.git
synced 2026-08-31 03:38:03 +08:00
Fix bug#1379: don't use alloca() where it could overrun the stack size.
Implemented enhancement #1391: allow "export" in target-specific variable definitions. Change the Info name of the "Automatic" node to "Automatic Variables". Add text clarifying the scope of automatic variables to that section.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2002-10-13 Paul D. Smith <psmith@gnu.org>
|
||||
|
||||
* scripts/features/targetvars: Add a test for exporting
|
||||
target-specific vars (Bug #1391).
|
||||
|
||||
2002-10-05 Paul D. Smith <psmith@gnu.org>
|
||||
|
||||
* scripts/variables/automatic: Add tests for $$(@), $${@}, $${@D},
|
||||
|
||||
@@ -37,6 +37,8 @@ eight: BAR = eight
|
||||
# Test the export keyword with per-target variables
|
||||
nine: ; @echo $(FOO) $(BAR) $$FOO $$BAR
|
||||
nine: FOO = wallace
|
||||
nine-a: export BAZ = baz
|
||||
nine-a: ; @echo $$BAZ
|
||||
# Test = escaping
|
||||
EQ = =
|
||||
ten: one\=two
|
||||
@@ -86,6 +88,12 @@ $answer = "eight: seven eight\nseven: seven seven\n";
|
||||
$answer = "wallace bar wallace bar\n";
|
||||
&compare_output($answer,&get_logfile(1));
|
||||
|
||||
# TEST #5-a
|
||||
|
||||
&run_make_with_options($makefile, "nine-a", &get_logfile);
|
||||
$answer = "baz\n";
|
||||
&compare_output($answer,&get_logfile(1));
|
||||
|
||||
# TEST #6
|
||||
|
||||
&run_make_with_options($makefile, "ten", &get_logfile);
|
||||
|
||||
Reference in New Issue
Block a user