From be1573e85eee9d0998d05d35822e7f8bdee99739 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 24 Oct 2013 02:40:12 +0000 Subject: [PATCH] [SCons] Fix undefined build variable when building MSI --- SConstruct | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 2977d37b0..e2b0f8176 100644 --- a/SConstruct +++ b/SConstruct @@ -865,6 +865,7 @@ env = conf.Finish() # Python 2 Package Settings cython_min_version = LooseVersion('0.17') +env['install_python2_action'] = '' if env['python_package'] in ('full','default','new'): # Check for Cython: try: @@ -944,8 +945,6 @@ else: warnNoPython = False env['python_array_include'] = '' env['python_module_loc'] = '' - env['install_python2_action'] = '' - # Python 3 Package Settings if env['python3_package'] in ('y', 'default'):