mirror of
https://github.com/servo/servo.git
synced 2025-08-05 13:40:08 +01:00
Auto merge of #14932 - Manishearth:abspath, r=jdm
Expand ~ in --with-gecko for ./mach build-geckolib Otherwise `~/foo` expands to `/local/folder/~/foo`. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14932) <!-- Reviewable:end -->
This commit is contained in:
commit
ed3f53211c
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue