diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2018-08-21 16:31:37 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2018-08-21 16:36:28 +0200 |
| commit | 5a9c3573460e4003bde46efa0edc2e0fb627a1fe (patch) | |
| tree | 867ccab643e449747ee5d6b94f34b0e849ee5c11 | |
| parent | c16d3f5a2c956e27a398b16f09dc18ead2b27b05 (diff) | |
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.
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
