From 5a9c3573460e4003bde46efa0edc2e0fb627a1fe Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Tue, 21 Aug 2018 16:31:37 +0200 Subject: Make auto.conf symbol order match .config symbol order Not likely that you'd need to inspect it, since it's more of an implementation detail of incremental builds, but it doesn't hurt. --- kconfiglib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kconfiglib.py') diff --git a/kconfiglib.py b/kconfiglib.py index fd114ea..9ce3cbc 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -1312,7 +1312,7 @@ class Kconfig(object): for sym in self._defined_syms_set: sym._written = False - for sym in self._defined_syms_set: + for sym in self.defined_syms: if not sym._written: sym._written = True if not (sym.orig_type in (BOOL, TRISTATE) and -- cgit v1.2.3