summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@kolpackov.net>2005-03-09 19:21:34 +0000
committerBoris Kolpackov <boris@kolpackov.net>2005-03-09 19:21:34 +0000
commit18251c4633134c704464d7c567d82a110ab820c8 (patch)
tree64059a7128504089c898b962317915cfdbc73b27
parent2860d3b247e70a34246936fb085aeec951ea49b1 (diff)
downloadgunmake-18251c4633134c704464d7c567d82a110ab820c8.tar.gz
Fixed Savannah bug #12266.
-rw-r--r--ChangeLog9
-rw-r--r--main.c2
-rw-r--r--read.c4
-rw-r--r--tests/ChangeLog7
-rw-r--r--tests/scripts/variables/DEFAULT_TARGET21
5 files changed, 38 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 8d7dcbb..58b650c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-03-09 Boris Kolpackov <boris@kolpackov.net>
+
+ * main.c (main): Use o_file instead of o_default when defining
+ the .DEFAULT_TARGET special variable.
+
+ * read.c (eval): Use define_variable_global() instead of
+ define_variable() when setting new value for the .DEFAULT_TARGET
+ special variable. Fixes Savannah bug #12266.
+
2005-03-04 Boris Kolpackov <boris@kolpackov.net>
* imlicit.c (pattern_search): Mark files for which an implicit
diff --git a/main.c b/main.c
index c20be9b..750ded3 100644
--- a/main.c
+++ b/main.c
@@ -1553,7 +1553,7 @@ main (int argc, char **argv, char **envp)
{
struct variable *v = define_variable (
- ".DEFAULT_TARGET", 15, "", o_default, 0);
+ ".DEFAULT_TARGET", 15, "", o_file, 0);
default_target_name = &v->value;
}
diff --git a/read.c b/read.c
index c7ff6c6..772ef8c 100644
--- a/read.c
+++ b/read.c
@@ -1262,8 +1262,8 @@ eval (struct ebuffer *ebuf, int set_default)
if (!reject)
{
- (void) define_variable (
- ".DEFAULT_TARGET", 15, t->name, o_file, 0);
+ (void) define_variable_global (
+ ".DEFAULT_TARGET", 15, t->name, o_file, 0, NILF);
break;
}
}
diff --git a/tests/ChangeLog b/tests/ChangeLog
index ce8f460..7fa8f86 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,6 +1,11 @@
+2005-03-09 Boris Kolpackov <boris@kolpackov.net>
+
+ * scripts/variables/DEFAULT_TARGET: Add a test for Savannah
+ bug #12266.
+
2005-03-04 Boris Kolpackov <boris@kolpackov.net>
- * features/patternrules: Add a test fo Savannah bug #12202.
+ * scripts/features/patternrules: Add a test for Savannah bug #12202.
2005-03-03 Boris Kolpackov <boris@kolpackov.net>
diff --git a/tests/scripts/variables/DEFAULT_TARGET b/tests/scripts/variables/DEFAULT_TARGET
index 76b2a23..d8f1173 100644
--- a/tests/scripts/variables/DEFAULT_TARGET
+++ b/tests/scripts/variables/DEFAULT_TARGET
@@ -3,6 +3,7 @@ $description = "Test the .DEFAULT_TARGET special variable.";
$details = "";
+
# Test #1: basic logic.
#
run_make_test('
@@ -45,7 +46,7 @@ run_make_test('
512);
-# Test #2: more than one target.
+# Test #3: more than one target.
#
run_make_test('
.DEFAULT_TARGET := foo bar
@@ -55,5 +56,23 @@ run_make_test('
512);
+# Test #4: Savannah bug #12226.
+#
+run_make_test('
+define rule
+foo: ; @echo $$@
+endef
+
+define make-rule
+$(eval $(rule))
+endef
+
+$(call make-rule)
+
+',
+'',
+'foo');
+
+
# This tells the test driver that the perl test script executed properly.
1;