From caf75acf5798547a8b84f243e7bed46c3a3443d8 Mon Sep 17 00:00:00 2001 From: dmv Date: Fri, 15 Oct 2010 12:04:59 +0000 Subject: [PATCH] Win32: Correct python scripts parsing --- bin/launchConfigureParser.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/launchConfigureParser.py b/bin/launchConfigureParser.py index 7fde55b79..7a67bfb07 100755 --- a/bin/launchConfigureParser.py +++ b/bin/launchConfigureParser.py @@ -900,7 +900,10 @@ def get_env(theAdditionalOptions=[], appname="SalomeApp"): if cmd_opts.py_scripts is not None: listlist = cmd_opts.py_scripts for listi in listlist: - args[script_nam] += re.split( "[:;,]", listi) + if os.sys.platform == 'win32': + args[script_nam] += re.split( "[;,]", listi) + else: + args[script_nam] += re.split( "[:;,]", listi) for arg in cmd_args: if arg[-3:] == ".py": args[script_nam].append(arg) -- 2.39.2