we need regular Split() as it's not promised those lines will be separated by just \n and not \r\n
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5567 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
9993add206
commit
8297c5c021
1 changed files with 4 additions and 6 deletions
10
SConstruct
10
SConstruct
|
@ -132,8 +132,7 @@ else:
|
|||
if 'msvc' in defenv['TOOLS'] or 'mstoolkit' in defenv['TOOLS']:
|
||||
ignore_tests = 'none'
|
||||
else:
|
||||
ignore_tests = ','.join("""
|
||||
Examples/System/System.nsi
|
||||
ignore_tests = ','.join(Split("""
|
||||
Examples/LogicLib.nsi
|
||||
Examples/StrFunc.nsi
|
||||
Examples/TextFunc.nsi
|
||||
|
@ -145,10 +144,9 @@ Examples/makensis.nsi
|
|||
Examples/gfx.nsi
|
||||
Examples/nsDialogs/example.nsi
|
||||
Examples/nsDialogs/InstallOptions.nsi
|
||||
Examples/nsDialogs/welcome.nsi
|
||||
Examples/Modern UI/WelcomeFinish.nsi
|
||||
Examples/Modern UI/HeaderBitmap.nsi
|
||||
""".strip().split("\n"))
|
||||
Examples/nsDialogs/welcome.nsi""")
|
||||
+ ['Examples/Modern UI/WelcomeFinish.nsi']
|
||||
+ ['Examples/Modern UI/HeaderBitmap.nsi'])
|
||||
|
||||
# version
|
||||
opts.Add(('VERSION', 'Version of NSIS', cvs_version))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue