Replace "-sdk=<path>" with "-sdk <path>" in tests.

Part of the migration to the new driver.

Swift SVN r13027
This commit is contained in:
Jordan Rose
2014-01-28 01:42:38 +00:00
parent c636c6a5fd
commit 2132bfff49
4 changed files with 5 additions and 5 deletions

View File

@@ -530,10 +530,10 @@ void CompilerInvocation::buildDWARFDebugFlags(std::string &Output,
// Inject the SDK path if it is missing.
for (auto A : Args) {
if (StringRef(A).startswith("-sdk="))
if (StringRef(A).startswith("-sdk"))
return;
}
OS << " -sdk=";
OS << " -sdk ";
PrintArg(OS, SDKPath.data(), false);
}