Xcode: this is what happens when you do not treat command lines as arrays.

pull/8662/head
Jussi Pakkanen 4 years ago
parent 318d50270c
commit 39f963988b
  1. 1
      mesonbuild/backend/xcodebackend.py

@ -1249,6 +1249,7 @@ class XCodeBackend(backends.Backend):
if args:
quoted_args = []
for a in args:
a = a.replace(r'"', r'\\\"')
if ' ' in a:
a = r'\"' + a + r'\"'
quoted_args.append(a)

Loading…
Cancel
Save