Skip to content

Commit

Permalink
Ensure all env vars are str
Browse files Browse the repository at this point in the history
This is necessary for the Python build bundled in MozillaBuild.
  • Loading branch information
upsuper committed Jul 11, 2016
1 parent beaef00 commit cb62b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/servo/build_commands.py
Expand Up @@ -332,7 +332,7 @@ def build_geckolib(self, jobs=None, verbose=False, release=False):
opts += ["--release"]

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()
with cd(path.join("ports", "geckolib")):
Expand Down

0 comments on commit cb62b5d

Please sign in to comment.