mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Fixes to get a better update on MSYS2.
This commit is contained in:
parent
be63b8a517
commit
616892914e
@ -57,6 +57,7 @@ def _output(text = os.linesep, log = None):
|
|||||||
else:
|
else:
|
||||||
for l in text.replace(chr(13), '').splitlines():
|
for l in text.replace(chr(13), '').splitlines():
|
||||||
print l
|
print l
|
||||||
|
sys.stdout.flush()
|
||||||
|
|
||||||
def stdout_raw(text = os.linesep):
|
def stdout_raw(text = os.linesep):
|
||||||
print text,
|
print text,
|
||||||
@ -65,6 +66,7 @@ def stdout_raw(text = os.linesep):
|
|||||||
def stderr(text = os.linesep, log = None):
|
def stderr(text = os.linesep, log = None):
|
||||||
for l in text.replace(chr(13), '').splitlines():
|
for l in text.replace(chr(13), '').splitlines():
|
||||||
print >> sys.stderr, l
|
print >> sys.stderr, l
|
||||||
|
sys.stderr.flush()
|
||||||
|
|
||||||
def output(text = os.linesep, log = None):
|
def output(text = os.linesep, log = None):
|
||||||
if not quiet:
|
if not quiet:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user