From 67a5bb5c730ba3abebccdbe64a4f509d92f33b9e Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 1 Nov 2014 23:38:02 +0100 Subject: [PATCH] Regression due to Issue 1502 --- waflib/Tools/c_preproc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/waflib/Tools/c_preproc.py b/waflib/Tools/c_preproc.py index aee60c00..4d6e866e 100644 --- a/waflib/Tools/c_preproc.py +++ b/waflib/Tools/c_preproc.py @@ -868,6 +868,7 @@ class c_parser(object): if found and not found in self.ban_includes: # TODO duplicates do not increase the no-op build times too much, but they may be worth removing self.nodes.append(found) + self.addlines(found) else: if not filename in self.names: self.names.append(filename)