зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1411081 - Foster debugging of old-configure.vars; r=nalexander
We mix the added and modified variables from mozconfig and sort them. We also print comments indicating where values come from. MozReview-Commit-ID: 97x9iHxZe3m --HG-- extra : rebase_source : 367bc410bc06532a91b488039e3cb0ec65850c09
This commit is contained in:
Родитель
6468a50bc7
Коммит
5b6a6d303e
|
@ -66,6 +66,7 @@ set_config('AUTOCONF', autoconf)
|
||||||
old_configure_assignments, build_project)
|
old_configure_assignments, build_project)
|
||||||
@imports(_from='__builtin__', _import='open')
|
@imports(_from='__builtin__', _import='open')
|
||||||
@imports(_from='__builtin__', _import='print')
|
@imports(_from='__builtin__', _import='print')
|
||||||
|
@imports(_from='__builtin__', _import='sorted')
|
||||||
@imports('glob')
|
@imports('glob')
|
||||||
@imports('itertools')
|
@imports('itertools')
|
||||||
@imports('subprocess')
|
@imports('subprocess')
|
||||||
|
@ -126,13 +127,21 @@ def prepare_configure(old_configure, mozconfig, autoconf, build_env, shell,
|
||||||
log.debug('| %s', command)
|
log.debug('| %s', command)
|
||||||
|
|
||||||
if mozconfig['path']:
|
if mozconfig['path']:
|
||||||
|
inject('# start of mozconfig values')
|
||||||
|
items = {}
|
||||||
for key, value in mozconfig['vars']['added'].items():
|
for key, value in mozconfig['vars']['added'].items():
|
||||||
inject("%s=%s" % (key, quote(value)))
|
items[key] = (value, 'added')
|
||||||
for key, (old, value) in mozconfig['vars']['modified'].items():
|
for key, (old, value) in mozconfig['vars']['modified'].items():
|
||||||
inject("%s=%s" % (key, quote(value)))
|
items[key] = (value, 'modified')
|
||||||
|
|
||||||
|
for key, (value, action) in sorted(items.items()):
|
||||||
|
inject("%s=%s # %s" % (key, quote(value), action))
|
||||||
|
|
||||||
for t in ('env', 'vars'):
|
for t in ('env', 'vars'):
|
||||||
for key in mozconfig[t]['removed'].keys():
|
for key in sorted(mozconfig[t]['removed'].keys()):
|
||||||
inject("unset %s" % key)
|
inject("unset %s # from %s" % (key, t))
|
||||||
|
|
||||||
|
inject('# end of mozconfig values')
|
||||||
|
|
||||||
# Autoconf is special, because it might be passed from
|
# Autoconf is special, because it might be passed from
|
||||||
# mozconfig['make_extra'], which we don't pass automatically above.
|
# mozconfig['make_extra'], which we don't pass automatically above.
|
||||||
|
|
Загрузка…
Ссылка в новой задаче