aboutsummaryrefslogtreecommitdiff
path: root/build2/target
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-01-31 09:53:25 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-02-13 12:42:41 +0200
commitf519c44792429ce52cfab09898701bff9c202770 (patch)
tree436ad143530ba0b7bd6b69b39fe1bb9f1e389751 /build2/target
parent450c5c09ed7898a800bf5c9328799a43aba78e48 (diff)
Add load generation to global variable_map values
Diffstat (limited to 'build2/target')
-rw-r--r--build2/target2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/target b/build2/target
index 8733a59..30dffab 100644
--- a/build2/target
+++ b/build2/target
@@ -550,7 +550,7 @@ namespace build2
public:
target (dir_path d, dir_path o, string n, optional<string> e)
: dir (move (d)), out (move (o)), name (move (n)), ext (move (e)),
- vars (true) // Global.
+ vars (false) // Note: not global.
{}
};