From 1b01309cf61f45ffc5862a2c3da8c71324bc77b3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 5 Aug 2016 16:38:18 +0200 Subject: 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. --- build2/target.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build2/target.cxx') 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; -- cgit v1.1