From bf11fe3531723cbdf1e0ff4ba6aac18afbb33f1e Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Mon, 9 Jan 2017 13:19:57 -0800 Subject: [PATCH] Expand ~ in --with-gecko for ./mach build-geckolib --- python/servo/build_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: