From 247bd2efd886bbb75dcdadf4d78933369e813169 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sat, 5 Apr 2008 06:16:50 +0000 Subject: 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. --- PC/VS8.0/build_ssl.py | 2 +- PCbuild/build_ssl.py | 2 +- 2 files changed, 2 insertions(+), 2 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) 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) -- cgit v0.12