Skip to content

Commit

Permalink
use special=anything to trigger loading from depslog
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed Apr 8, 2013
1 parent 1bda333 commit ce65cb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ void Node::Dump(const char* prefix) const {

bool ImplicitDepLoader::LoadDeps(Edge* edge, string* err) {
string special = edge->GetBinding("special");
if (!special.empty() && special == "gcc") {
if (!special.empty()) {
if (!LoadDepsFromLog(edge, err)) {
if (!err->empty())
return false;
Expand Down

0 comments on commit ce65cb9

Please sign in to comment.