]> xenbits.xensource.com Git - pvdrivers/win/xenvbd.git/commitdiff
Reduce spam from build.py
authorPaul Durrant <paul.durrant@citrix.com>
Thu, 25 Sep 2014 15:17:01 +0000 (16:17 +0100)
committerPaul Durrant <paul.durrant@citrix.com>
Thu, 25 Sep 2014 15:24:15 +0000 (16:24 +0100)
We don't the verbose prints when deciding whether we're using vs2012 or 2013.

Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
build.py

index a87aecb1391d911c11b1a2aa55052aef5aaa2f5a..c3916b6778b42760d1e4a42457d505a0a9a39a0f 100644 (file)
--- a/build.py
+++ b/build.py
@@ -311,10 +311,7 @@ def getVsVersion():
     vars = subprocess.check_output([os.environ['VS']+'\\VC\\vcvarsall.bat', 
                                         '&&', 'set'], 
                                     shell=True)
-    print( vars)
     for var in vars.splitlines():
-        print (var)
-        print (var.strip())
         k, _, v = map(str.strip, var.strip().decode('utf-8').partition('='))
         if k.startswith('?'):
             continue