Commit 49b0ba49 authored by Christos Gentsos's avatar Christos Gentsos

Produce a warning when an included Makefile cannot be found

parent e6ab358e
......@@ -134,6 +134,8 @@ class ToolMakefile(object):
for file_aux in self.manifest_dict["incl_makefiles"]:
if os.path.exists(file_aux):
self.writeln("include %s" % file_aux)
else:
logging.warning("Included Makefile %s NOT found.", file_aux)
self.writeln()
def makefile_clean(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment