Skip to content

Commit a869925

Browse files
authored
Merge pull request #3919 from jasonmolenda/remove-extra-quoting-of-target-opt
Don't quote -target cmdline opt to TARGET_SWIFTFLAGS
2 parents 47ef2e9 + 3cae3f5 commit a869925

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/builders

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/builders/darwin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def getSwiftTargetFlags(self, arch):
122122
if vendor is None or os is None or version is None or env is None:
123123
return []
124124
return [
125-
'TARGET_SWIFTFLAGS="-target {}-{}-{}{}{}"'.format(
125+
'TARGET_SWIFTFLAGS=-target {}-{}-{}{}{}'.format(
126126
arch, vendor, os, version, (("-" + env) if env else ""))
127127
]
128128

0 commit comments

Comments
 (0)