Skip to content

Commit 533b86d

Browse files
committed
No newline in depfile output, which seems to confuse ninja (flutter#125)
1 parent 20148b2 commit 533b86d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

impeller/compiler/compiler.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ std::unique_ptr<fml::Mapping> Compiler::CreateDepfileContents(
458458
const auto dependencies = GetDependencyNames(" ");
459459

460460
std::stringstream stream;
461-
stream << targets << ":\n\t" << dependencies << "\n";
461+
stream << targets << ": " << dependencies << "\n";
462462

463463
auto contents = std::make_shared<std::string>(stream.str());
464464
return std::make_unique<fml::NonOwnedMapping>(

0 commit comments

Comments
 (0)