aboutsummaryrefslogtreecommitdiff
path: root/build/operation.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-03-25 14:48:36 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-03-25 14:48:36 +0200
commitcd75e06a87aa74aa6968113107afa53d401d20bc (patch)
tree1e104829d10f375a783d6efbbf7eef3e2c6d2ef5 /build/operation.cxx
parenta94dcda7f00b10cb22b5f2138b1c29bcfbe7de37 (diff)
Configure/disfigure src_root saving/removing support; fsdir{} injection
We can now build out-of-tree.
Diffstat (limited to 'build/operation.cxx')
-rw-r--r--build/operation.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/build/operation.cxx b/build/operation.cxx
index bbd474f..7fab63e 100644
--- a/build/operation.cxx
+++ b/build/operation.cxx
@@ -60,6 +60,7 @@ namespace build
void
match (action a,
+ scope&,
const target_key& tk,
const location& l,
action_targets& ts)
@@ -72,12 +73,14 @@ namespace build
target& t (**i);
- //@@ dump
+ if (verb >= 5)
+ dump ();
level4 ([&]{trace << "matching " << t;});
match (a, t);
- //@@ dump
+ if (verb >= 5)
+ dump ();
ts.push_back (&t);
}