aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2021-09-01 20:34:51 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2021-09-01 20:34:51 +0000
commitb94feb7cb64e4e90bf40c5d09807f18e6d614bf8 (patch)
tree20b58979999b208e2d7dfec77cd92e5d3dadfd39
parent0d201ba42645fd53aa542bb3f7e65e64ae1c9bf4 (diff)
parent2297d9a39579f02d6de6f5f346de24672e0171a6 (diff)
downloadbuild-b94feb7cb64e4e90bf40c5d09807f18e6d614bf8.tar.gz
Merge "Fix: print namespace variable names, too."
-rw-r--r--core/product_config.rbc2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/product_config.rbc b/core/product_config.rbc
index 8fbcfa5782..28b37a3a70 100644
--- a/core/product_config.rbc
+++ b/core/product_config.rbc
@@ -82,7 +82,7 @@ def _printvars(globals, cfg):
# Define SOONG_CONFIG_<ns> for Make, othewise
# it cannot be added to .KATI_READONLY list
if _options.format == "make":
- print("SOONG_CONFIG_" + nsname, ":=")
+ print("SOONG_CONFIG_" + nsname, ":=", " ".join(nsvars.keys()))
for var, val in sorted(nsvars.items()):
__print_attr("SOONG_CONFIG_%s_%s" % (nsname, var), val)
elif attr not in _globals_base: