Commit 247bd2ef authored by Neal Norwitz's avatar Neal Norwitz

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.
parent f5c7c2ee
......@@ -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)
......
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment