Skip to content

Commit

Permalink
Fix godotengine#1059: Linking for mingw/x86_64 on MSYS2 fails, w/ ar …
Browse files Browse the repository at this point in the history
…execution speed up
  • Loading branch information
feiyunw committed Mar 31, 2023
1 parent 8d3dc75 commit 88e135d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/my_spawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def mySpawn(sh, escape, cmd, args, env):
# print("objs=", len(args) - begin, ", length=", len(cmdline))
rv = mySubProcess(cmdline, env)
else:
rv = mySubProcess(args, env)
rv = mySubProcess(" ".join(args), env)
return rv

env["SPAWN"] = mySpawn
Expand Down

0 comments on commit 88e135d

Please sign in to comment.