mirror of
https://github.com/servo/servo.git
synced 2025-06-10 09:33:13 +00:00
Ensure all env vars are str
This is necessary for the Python build bundled in MozillaBuild.
This commit is contained in:
parent
beaef005c2
commit
cb62b5dd26
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ class MachCommands(CommandBase):
|
||||||
opts += ["--release"]
|
opts += ["--release"]
|
||||||
|
|
||||||
env = self.build_env()
|
env = self.build_env()
|
||||||
env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target", "geckolib")
|
env["CARGO_TARGET_DIR"] = path.join(self.context.topdir, "target", "geckolib").encode("UTF-8")
|
||||||
|
|
||||||
build_start = time()
|
build_start = time()
|
||||||
with cd(path.join("ports", "geckolib")):
|
with cd(path.join("ports", "geckolib")):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue