Browse Source

modify stderr display in building script.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1105 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong@gmail.com 14 years ago
parent
commit
b5a2fde359
1 changed files with 1 additions and 3 deletions
  1. 1 3
      tools/building.py

+ 1 - 3
tools/building.py

@@ -223,11 +223,9 @@ class Win32Spawn:
         data, err = proc.communicate()
         rv = proc.wait()
         if rv:
-            print "====="
             print err
-            print "====="
             return rv
-           
+
         if data:
             print data
         return 0