diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-04-05 06:16:50 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-04-05 06:16:50 (GMT) |
commit | 247bd2efd886bbb75dcdadf4d78933369e813169 (patch) | |
tree | be0ea4cb0224a1f2b5f72e7569a04894462436ec /PCbuild | |
parent | f5c7c2eeca4c146fac28104ca91843cf3c8d640e (diff) | |
download | cpython-247bd2efd886bbb75dcdadf4d78933369e813169.zip cpython-247bd2efd886bbb75dcdadf4d78933369e813169.tar.gz cpython-247bd2efd886bbb75dcdadf4d78933369e813169.tar.bz2 |
Change \u which is causing a syntax error. I'm not sure if that should be, but
at least this should let the build get farther on amd64 machines.
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/build_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index f24c906..7f3a5d0 100644 --- a/PCbuild/build_ssl.py +++ b/PCbuild/build_ssl.py @@ -233,7 +233,7 @@ def main(): # Now run make. if arch == "amd64": - rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm") + rc = os.system("ml64 -c -Foms\\uptable.obj ms\\uptable.asm") if rc: print("ml64 assembler has failed.") sys.exit(rc) |