diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-09 18:40:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-09 18:40:29 +0200 |
commit | dfbe3c437fcbf91ef876a0a0f3e34beec5f5f2a8 (patch) | |
tree | d142bcc447ef2e3b658c5645b5f58010178d6213 /libbuild2/cc | |
parent | 749ec8c61067cae42d4f546a8c9842c12da62f7b (diff) |
Adjust to butl::process::quite_argument() interface change
Diffstat (limited to 'libbuild2/cc')
-rw-r--r-- | libbuild2/cc/link-rule.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/cc/link-rule.cxx b/libbuild2/cc/link-rule.cxx index 2b3f22a..9c72969 100644 --- a/libbuild2/cc/link-rule.cxx +++ b/libbuild2/cc/link-rule.cxx @@ -3322,7 +3322,7 @@ namespace build2 { auto quote = [s = string ()] (const char* a) mutable -> const char* { - return process::quote_argument (a, s); + return process::quote_argument (a, s, false /* batch */); }; // Calculate the would-be command line length similar to how process' |