From 5a73d6fd55b36d7569523ccc53b9162ea943fec0 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 12 Jul 2012 23:59:49 +0000 Subject: [PATCH] Don't echo when checking version of cl.exe git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@72058 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- buildtools/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtools/config.py b/buildtools/config.py index 7460661c..f276868f 100644 --- a/buildtools/config.py +++ b/buildtools/config.py @@ -837,7 +837,7 @@ def getSipFiles(names): def getVisCVersion(): - text = runcmd("cl.exe", getOutput=True) + text = runcmd("cl.exe", getOutput=True, echoCmd=False) if 'Version 15' in text: return '90' # TODO: Add more tests to get the other versions...