Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3811c649 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix: print namespace variable names, too." am: b94feb7c

Original change: https://android-review.googlesource.com/c/platform/build/+/1810518

Change-Id: Id26da4e26967e4b04ff2933b7f0d5a9dededdabd
parents bd2e36f2 b94feb7c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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: