aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/build_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r--python/servo/build_commands.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py
index 0e7151e5efc..f344b050f4e 100644
--- a/python/servo/build_commands.py
+++ b/python/servo/build_commands.py
@@ -332,7 +332,7 @@ class MachCommands(CommandBase):
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")):