bare/devel/qemu: Fix the release URL logic and pkconfig python3 issues.

Closes #2645.
This commit is contained in:
Chris Johns
2016-03-16 17:14:45 +11:00
parent 52561d9d95
commit ed86b4b006
3 changed files with 12 additions and 5 deletions

View File

@@ -87,8 +87,9 @@ def log(s, lf = True):
print(s, file = out)
else:
if out != sys.stdout and trace_stdout:
print(s, end = '', flush = True)
print(out, s, end = '', flush = True)
print(s, end = '')
sys.stdout.flush()
print(s, end = '', file = out)
def run(argv):