Fix path display for linking errors
This commit is contained in:
parent
f87d891cf2
commit
797d6accd2
1 changed files with 1 additions and 1 deletions
2
umake.py
2
umake.py
|
|
@ -214,7 +214,7 @@ def make(config: Config):
|
||||||
for job_path, job in jobs: # Wait the last jobs to finish
|
for job_path, job in jobs: # Wait the last jobs to finish
|
||||||
job.wait()
|
job.wait()
|
||||||
if job.returncode != 0:
|
if job.returncode != 0:
|
||||||
error_paths.append((app_path, job.stdout.read() + job.stderr.read()))
|
error_paths.append((job_path, job.stdout.read() + job.stderr.read()))
|
||||||
else: # Single-process
|
else: # Single-process
|
||||||
for app_path, app_object_path in zip(config.APPS, all_app_objects):
|
for app_path, app_object_path in zip(config.APPS, all_app_objects):
|
||||||
if app_path in config.IGNORE_APPS:
|
if app_path in config.IGNORE_APPS:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue