]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Change \u which is causing a syntax error. I'm not sure if that should be, but
authorNeal Norwitz <nnorwitz@gmail.com>
Sat, 5 Apr 2008 06:16:50 +0000 (06:16 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Sat, 5 Apr 2008 06:16:50 +0000 (06:16 +0000)
at least this should let the build get farther on amd64 machines.

PC/VS8.0/build_ssl.py
PCbuild/build_ssl.py

index ab5fcea8f57d132f453814e3dc792c03d5bff7ba..867fd4c4a3f93da7551e124952307a89a44df41e 100644 (file)
@@ -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)
index f24c9068ae0db9614cdd5548b717a4da5d859335..7f3a5d0d3fe1f60c886982fa48bbf5cc31e54d7b 100644 (file)
@@ -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)