summaryrefslogtreecommitdiff
path: root/support/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'support/scripts')
-rw-r--r--support/scripts/gen-manual-lists.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/support/scripts/gen-manual-lists.py b/support/scripts/gen-manual-lists.py
index 483b3847e..95c10dcbc 100644
--- a/support/scripts/gen-manual-lists.py
+++ b/support/scripts/gen-manual-lists.py
@@ -389,13 +389,13 @@ class Buildroot:
for sym in self.config:
if not sym.is_symbol():
continue
+ if _symbol_is_legacy(sym):
+ continue
selects = sym.get_selected_symbols()
if not selects:
continue
for s in selects:
if s == symbol:
- if _symbol_is_legacy(sym):
- continue
if sym.prompts:
l = self._get_symbol_label(sym,False)
parent_pkg = _get_parent_package(sym)