diff options
Diffstat (limited to 'python/servo/build_commands.py')
-rw-r--r-- | python/servo/build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/build_commands.py b/python/servo/build_commands.py index bd09221d56f..8948aecd4bd 100644 --- a/python/servo/build_commands.py +++ b/python/servo/build_commands.py @@ -408,7 +408,7 @@ class MachCommands(CommandBase): opts = [] if with_gecko is not None: opts += ["--features", "bindgen"] - env["MOZ_DIST"] = path.abspath(with_gecko) + env["MOZ_DIST"] = path.abspath(path.expanduser(with_gecko)) if jobs is not None: opts += ["-j", jobs] if verbose: |