]> xenbits.xensource.com Git - pvdrivers/win/xeniface.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:30:02 +0000 (16:30 +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 f7d2f9904ef8d35b411190b704975db19af0b192..ec7d0c4a067ba77522d7b370871a3fc3b6ef97e2 100644 (file)
--- a/build.py
+++ b/build.py
@@ -384,10 +384,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