modify stderr display in building script.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1105 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
c2caac7e73
commit
b5a2fde359
|
@ -223,11 +223,9 @@ class Win32Spawn:
|
||||||
data, err = proc.communicate()
|
data, err = proc.communicate()
|
||||||
rv = proc.wait()
|
rv = proc.wait()
|
||||||
if rv:
|
if rv:
|
||||||
print "====="
|
|
||||||
print err
|
print err
|
||||||
print "====="
|
|
||||||
return rv
|
return rv
|
||||||
|
|
||||||
if data:
|
if data:
|
||||||
print data
|
print data
|
||||||
return 0
|
return 0
|
||||||
|
|
Loading…
Reference in New Issue