Loading core/product_config.rbc +2 −2 Original line number Diff line number Diff line Loading @@ -167,8 +167,8 @@ def _product_configuration(top_pcm_name, top_pcm, input_variables_init): # Now we know everything about this PCM, record it in 'configs'. children = handle.inherited_modules if _options.trace_modules: print("# ", " ".join(children.keys())) configs[name] = (pcm, handle.cfg, children.keys(), False) print("# ", " ".join(sorted(children.keys()))) configs[name] = (pcm, handle.cfg, sorted(children.keys()), False) pcm_count = pcm_count + 1 if len(children) == 0: Loading tests/single_value_inheritance/product.rbc +1 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ load(":inherit2.rbc", _inherit2_init = "init") def init(g, handle): cfg = rblf.cfg(handle) rblf.inherit(handle, "test/inherit1", _inherit1_init) rblf.inherit(handle, "test/inherit2", _inherit2_init) rblf.inherit(handle, "test/inherit1", _inherit1_init) cfg["PRODUCT_DEFAULT_DEV_CERTIFICATE"] = "" Loading
core/product_config.rbc +2 −2 Original line number Diff line number Diff line Loading @@ -167,8 +167,8 @@ def _product_configuration(top_pcm_name, top_pcm, input_variables_init): # Now we know everything about this PCM, record it in 'configs'. children = handle.inherited_modules if _options.trace_modules: print("# ", " ".join(children.keys())) configs[name] = (pcm, handle.cfg, children.keys(), False) print("# ", " ".join(sorted(children.keys()))) configs[name] = (pcm, handle.cfg, sorted(children.keys()), False) pcm_count = pcm_count + 1 if len(children) == 0: Loading
tests/single_value_inheritance/product.rbc +1 −1 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ load(":inherit2.rbc", _inherit2_init = "init") def init(g, handle): cfg = rblf.cfg(handle) rblf.inherit(handle, "test/inherit1", _inherit1_init) rblf.inherit(handle, "test/inherit2", _inherit2_init) rblf.inherit(handle, "test/inherit1", _inherit1_init) cfg["PRODUCT_DEFAULT_DEV_CERTIFICATE"] = ""