mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-18 13:03:58 +01:00
projects.py: Fix broken error message on failed build
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
parent
a935715036
commit
a5306bfc80
1 changed files with 1 additions and 1 deletions
|
|
@ -554,7 +554,7 @@ class Projects(object):
|
||||||
p.wait()
|
p.wait()
|
||||||
print('`' + delim + ' <')
|
print('`' + delim + ' <')
|
||||||
if p.returncode:
|
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)
|
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):
|
def run_make_on_modules(modules, order, target):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue