]> xenbits.xensource.com Git - pvdrivers/win/xenvbd.git/commitdiff
Remove some build noise
authorPaul Durrant <paul.durrant@citrix.com>
Fri, 13 Sep 2013 08:58:13 +0000 (09:58 +0100)
committerPaul Durrant <paul.durrant@citrix.com>
Fri, 13 Sep 2013 08:58:13 +0000 (09:58 +0100)
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
build.py

index 6a481dde6e7b27824e680d9475e275cf9d0cec4a..2800b1fa37fb7dcc68fcd3d1c5cef3b3432b7227 100644 (file)
--- a/build.py
+++ b/build.py
@@ -247,8 +247,9 @@ def callfnout(cmd):
 
     if ret != 0:
         raise(Exception("Error %d in : %s" % (ret, cmd)))
-    print("------------------------------------------------------------")
+
     return output.decode('utf-8')
+
 def archive(filename, files, tgz=False):
     access='w'
     if tgz:
@@ -256,7 +257,6 @@ def archive(filename, files, tgz=False):
     tar = tarfile.open(filename, access)
     for name in files :
         try:
-            print('adding '+name)
             tar.add(name)
         except:
             pass