Skip to content

Commit

Permalink
No newline in depfile output, which seems to confuse ninja (flutter#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
dnfield committed Apr 27, 2022
1 parent 20148b2 commit 533b86d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impeller/compiler/compiler.cc
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ std::unique_ptr<fml::Mapping> Compiler::CreateDepfileContents(
const auto dependencies = GetDependencyNames(" ");

std::stringstream stream;
stream << targets << ":\n\t" << dependencies << "\n";
stream << targets << ": " << dependencies << "\n";

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

0 comments on commit 533b86d

Please sign in to comment.