configure.py: Wrap in quotes

Former-commit-id: b3617b556d
This commit is contained in:
Luke Street 2023-02-11 11:21:05 -05:00
parent af2840ac61
commit e5b6be1b82
1 changed files with 1 additions and 1 deletions

View File

@ -1133,7 +1133,7 @@ if __name__ == "__main__":
if os.name != "nt" and "DEVKITPPC" in os.environ and not args.devkitppc: if os.name != "nt" and "DEVKITPPC" in os.environ and not args.devkitppc:
configure_args.extend(["--devkitppc", os.environ["DEVKITPPC"]]) configure_args.extend(["--devkitppc", os.environ["DEVKITPPC"]])
n.variable("configure_args", configure_args) n.variable("configure_args", configure_args)
n.variable("python", sys.executable) n.variable("python", f"\"{sys.executable}\"")
n.newline() n.newline()
### ###