From c5feaaf745421f2ecda672585c462cf4c807d25d Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 31 May 2021 12:37:59 +0200 Subject: Only pass target to recipe_text() if recipe is not shared --- libbuild2/adhoc-rule-buildscript.cxx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'libbuild2/adhoc-rule-buildscript.cxx') diff --git a/libbuild2/adhoc-rule-buildscript.cxx b/libbuild2/adhoc-rule-buildscript.cxx index 73219b6..fe74fc6 100644 --- a/libbuild2/adhoc-rule-buildscript.cxx +++ b/libbuild2/adhoc-rule-buildscript.cxx @@ -23,8 +23,12 @@ using namespace std; namespace build2 { bool adhoc_buildscript_rule:: - recipe_text (context& ctx, const target& tg, const adhoc_actions& acts, - string&& t, attributes& as) + recipe_text (context& ctx, + const scope& s, + const target* tg, + const adhoc_actions& acts, + string&& t, + attributes& as) { // Handle and erase recipe-specific attributes. // @@ -57,7 +61,7 @@ namespace build2 istringstream is (move (t)); build::script::parser p (ctx); - script = p.pre_parse (tg, acts, + script = p.pre_parse (s, tg, acts, is, loc.file, loc.line + 1, move (diag), as.loc); -- cgit v1.1