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
This commit is contained in:
pabs3 2008-03-03 11:59:49 +00:00
parent e6f4040268
commit c62b08b189

View file

@ -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))