aboutsummaryrefslogtreecommitdiff
path: root/build2/target.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-05 16:38:18 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-05 16:38:18 +0200
commit1b01309cf61f45ffc5862a2c3da8c71324bc77b3 (patch)
tree1072ef7d6fb35e3e86eb68ae4e5363a3742f4eee /build2/target.cxx
parent0f1697e7465f15590a115dedb4516568f1e30db8 (diff)
Implement out-qualified target syntax for setting target-specific vars
So now we can do: doc{INSTALL}@./: install = false Note that so far that's the only place where we support out-qualification. Grep for @@ OUT to see other places.
Diffstat (limited to 'build2/target.cxx')
-rw-r--r--build2/target.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/target.cxx b/build2/target.cxx
index d9dd12e..a0283b0 100644
--- a/build2/target.cxx
+++ b/build2/target.cxx
@@ -300,7 +300,7 @@ namespace build2
os << '@' << o;
}
else
- os << '@' << k.out;
+ os << '@' << *k.out;
}
return os;