diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-07-07 14:23:39 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-07-07 17:34:24 +0300 |
commit | 900436dd83787f2cd47e7fc37f0530fc581a3e3b (patch) | |
tree | d5bcea6327504991fc87c870f7defa31e8ace160 /libbuild2 | |
parent | 6f11e5ec101934b4e83972646fd23c4113cadd73 (diff) |
Fix incorrect function family assignment for $target.process_path()
Diffstat (limited to 'libbuild2')
-rw-r--r-- | libbuild2/functions-name.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/functions-name.cxx b/libbuild2/functions-name.cxx index 72ac2bd..e5bb366 100644 --- a/libbuild2/functions-name.cxx +++ b/libbuild2/functions-name.cxx @@ -278,7 +278,7 @@ namespace build2 // Note that while this function is not technically pure, we don't mark it // as such for the same reasons as $path() above. // - fn["process_path"] += [](const scope* s, names ns) + ft["process_path"] += [](const scope* s, names ns) { if (s == nullptr) fail << "target.process_path() called out of scope"; |