[Python-3000-checkins] r62163 - in python/branches/py3k: PC/VS8.0/build_ssl.py PCbuild/build_ssl.py

neal.norwitz python-3000-checkins at python.org
Sat Apr 5 08:16:51 CEST 2008


Author: neal.norwitz
Date: Sat Apr  5 08:16:50 2008
New Revision: 62163

Modified:
   python/branches/py3k/PC/VS8.0/build_ssl.py
   python/branches/py3k/PCbuild/build_ssl.py
Log:
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.


Modified: python/branches/py3k/PC/VS8.0/build_ssl.py
==============================================================================
--- python/branches/py3k/PC/VS8.0/build_ssl.py	(original)
+++ python/branches/py3k/PC/VS8.0/build_ssl.py	Sat Apr  5 08:16:50 2008
@@ -225,7 +225,7 @@
 
         # 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)

Modified: python/branches/py3k/PCbuild/build_ssl.py
==============================================================================
--- python/branches/py3k/PCbuild/build_ssl.py	(original)
+++ python/branches/py3k/PCbuild/build_ssl.py	Sat Apr  5 08:16:50 2008
@@ -233,7 +233,7 @@
 
         # 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)


More information about the Python-3000-checkins mailing list