projects.py: Fix broken error message on failed build

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2019-11-11 21:25:23 +00:00
commit a5306bfc80

View file

@ -554,7 +554,7 @@ class Projects(object):
p.wait()
print('`' + delim + ' <')
if p.returncode:
print(make_cmd + ' failed')
print(' '.join(make_cmd) + ' failed')
raise Exception(time.strftime("%Y-%m-%d %H:%M") + ": failed to make target " + target + " in module " + module + " below base " + self.projs_root)
def run_make_on_modules(modules, order, target):