diff options
-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' |