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 /PC | |
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 'PC')
-rw-r--r-- | PC/VS8.0/build_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/VS8.0/build_ssl.py b/PC/VS8.0/build_ssl.py index ab5fcea..867fd4c 100644 --- a/PC/VS8.0/build_ssl.py +++ b/PC/VS8.0/build_ssl.py @@ -225,7 +225,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) |