Keep master-next building and tested

This commit is contained in:
David Zarzycki
2020-06-09 06:05:05 -04:00
parent eb3d0ef01b
commit 4be1192904
4 changed files with 5 additions and 4 deletions

View File

@@ -179,14 +179,14 @@ static bool emitMakeDependenciesIfNeeded(DiagnosticEngine &diags,
reversePathSortedFilenames(opts.InputsAndOutputs.getInputFilenames());
for (auto const &path : inputPaths) {
dependencyString.push_back(' ');
dependencyString.append(frontend::utils::escapeForMake(path, buffer));
dependencyString.append(frontend::utils::escapeForMake(path, buffer).str());
}
// Then print dependencies we've picked up during compilation.
auto dependencyPaths =
reversePathSortedFilenames(depTracker->getDependencies());
for (auto const &path : dependencyPaths) {
dependencyString.push_back(' ');
dependencyString.append(frontend::utils::escapeForMake(path, buffer));
dependencyString.append(frontend::utils::escapeForMake(path, buffer).str());
}
// FIXME: Xcode can't currently handle multiple targets in a single