mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-05 21:57:55 +00:00
Bug 899292 - Exception constructing environment when topobjdir isn't available; r=glandium
--HG-- extra : rebase_source : a920d5c87d112338259c0401c4cb29ed228cfa4c
This commit is contained in:
parent
ca8d01b9c5
commit
8b11dbaf71
@ -163,7 +163,9 @@ class MozbuildObject(ProcessExecutionMixin):
|
||||
|
||||
raise ObjdirMismatchException(topobjdir, config['topobjdir'])
|
||||
|
||||
topobjdir = os.path.normpath(config['topobjdir'] or topobjdir)
|
||||
topobjdir = config['topobjdir'] or topobjdir
|
||||
if topobjdir:
|
||||
topobjdir = os.path.normpath(topobjdir)
|
||||
|
||||
# If we can't resolve topobjdir, oh well. The constructor will figure
|
||||
# it out via config.guess.
|
||||
|
Loading…
x
Reference in New Issue
Block a user