Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 247bd2e

Browse files
committed
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.
1 parent f5c7c2e commit 247bd2e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

PC/VS8.0/build_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def main():
225225

226226
# Now run make.
227227
if arch == "amd64":
228-
rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm")
228+
rc = os.system("ml64 -c -Foms\\uptable.obj ms\\uptable.asm")
229229
if rc:
230230
print("ml64 assembler has failed.")
231231
sys.exit(rc)

PCbuild/build_ssl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ def main():
233233

234234
# Now run make.
235235
if arch == "amd64":
236-
rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm")
236+
rc = os.system("ml64 -c -Foms\\uptable.obj ms\\uptable.asm")
237237
if rc:
238238
print("ml64 assembler has failed.")
239239
sys.exit(rc)

0 commit comments

Comments
 (0)