From 774001b14b201459794bc1cbc2de67b7fe4a599d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 14 Apr 2014 21:03:28 +0000 Subject: [PATCH] Fix compiler selection when building for Py34 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@76346 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 28d09026..5be8e5b3 100644 --- a/wscript +++ b/wscript @@ -70,7 +70,8 @@ def configure(conf): # Python to know what version of the compiler to use. # TODO: Fix this msvc_version = '9.0' #conf.options.msvc_ver - if conf.options.python and '33' in conf.options.python: + if conf.options.python and ('33' in conf.options.python or + '34' in conf.options.python): msvc_version = '10.0' conf.env['MSVC_VERSIONS'] = ['msvc ' + msvc_version]