mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[Driver] Always quote file paths in the build record.
rdar://problem/21753365 Swift SVN r30054
This commit is contained in:
@@ -158,7 +158,7 @@ static void writeCompilationRecord(StringRef path, StringRef argsHash,
|
||||
out << "inputs: \n";
|
||||
|
||||
for (auto &entry : inputs) {
|
||||
out << "\t" << llvm::yaml::escape(entry.first->getValue()) << ": ";
|
||||
out << "\t\"" << llvm::yaml::escape(entry.first->getValue()) << "\": ";
|
||||
|
||||
switch (entry.second.status) {
|
||||
case CompileJobAction::InputInfo::UpToDate:
|
||||
|
||||
Reference in New Issue
Block a user