Fix the Windows environment in SCons spawn function

Properly fix #2974 as discussed there.
This commit is contained in:
George Marques 2016-09-10 12:08:04 -03:00
parent c5b7385110
commit aad87ab1b6
No known key found for this signature in database
GPG key ID: 046BD46A3201E43D

View file

@ -1379,6 +1379,7 @@ def use_windows_spawn_fix(self, platform=None):
cmdline = cmd + " " + newargs
rv=0
env = {str(key): str(value) for key, value in env.iteritems()}
if len(cmdline) > 32000 and cmd.endswith("ar") :
cmdline = cmd + " " + args[1] + " " + args[2] + " "
for i in range(3,len(args)) :