From c62b08b1899551adb2d94880183befc937a57b5e Mon Sep 17 00:00:00 2001 From: pabs3 Date: Mon, 3 Mar 2008 11:59:49 +0000 Subject: [PATCH] Use python split instead of scons Split so we can have spaces in file names for ignored tests. git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5560 212acab6-be3b-0410-9dea-997c60f758d6 --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 2c342fdf..c01fef60 100644 --- a/SConstruct +++ b/SConstruct @@ -132,7 +132,7 @@ else: if 'msvc' in defenv['TOOLS'] or 'mstoolkit' in defenv['TOOLS']: ignore_tests = 'none' else: - ignore_tests = ','.join(Split(""" + ignore_tests = ','.join(""" Examples/System/System.nsi Examples/LogicLib.nsi Examples/StrFunc.nsi @@ -146,7 +146,7 @@ Examples/gfx.nsi Examples/nsDialogs/example.nsi Examples/nsDialogs/InstallOptions.nsi Examples/nsDialogs/welcome.nsi -""")) +""".strip().split("\n")) # version opts.Add(('VERSION', 'Version of NSIS', cvs_version))