Commit ae5a9173 authored by Tim Peters's avatar Tim Peters

makeWin32(): Replaced shell syntax specific to cmd.exe Windows flavors

with an alternative that works under command.com too.  Building the
splitters still fails on command.com systems because the synthesized
command lines are very long (command.com appears to truncate them,
leaving gibberish commands).
parent 99061a93
...@@ -264,7 +264,8 @@ class ExtensionBuilder: ...@@ -264,7 +264,8 @@ class ExtensionBuilder:
module, config module, config
)) ))
self.doCommand('del *.def *.mak') self.doCommand('del *.def')
self.doCommand('del *.mak')
os.chdir(current_dir) os.chdir(current_dir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment