From 2076f3742194fb403961b2ff079c86fb017c9238 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 11 Apr 2012 20:26:02 +0000 Subject: [PATCH] Fixed a dependency issue with the MSI target MSI target now automatically implies "install" (to the stage dir) --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 0c0c6f641..85a2805b9 100644 --- a/SConstruct +++ b/SConstruct @@ -879,6 +879,7 @@ env['ct_matlab_dir'] = pjoin(env['prefix'], 'matlab', 'toolbox') # Always set the stage directory before building an MSI installer if 'msi' in COMMAND_LINE_TARGETS: + COMMAND_LINE_TARGETS.append('install') env['stage_dir'] = 'stage' env['prefix'] = '.' env['PYTHON_INSTALLER'] = 'binary'