From: Neal Norwitz Date: Sat, 5 Apr 2008 06:16:50 +0000 (+0000) Subject: Change \u which is causing a syntax error. I'm not sure if that should be, but X-Git-Tag: v3.0a5~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=247bd2efd886bbb75dcdadf4d78933369e813169;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/PC/VS8.0/build_ssl.py b/PC/VS8.0/build_ssl.py index ab5fcea8f57d..867fd4c4a3f9 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) diff --git a/PCbuild/build_ssl.py b/PCbuild/build_ssl.py index f24c9068ae0d..7f3a5d0d3fe1 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)