|
@@ -188,7 +188,7 @@ sub read_kconfig {
|
|
|
# configs without prompts must be selected
|
|
|
} elsif ($state ne "NONE" && /^\s*tristate\s\S/) {
|
|
|
# note if the config has a prompt
|
|
|
- $prompt{$config} = 1;
|
|
|
+ $prompts{$config} = 1;
|
|
|
|
|
|
# Check for if statements
|
|
|
} elsif (/^if\s+(.*\S)\s*$/) {
|
|
@@ -373,7 +373,7 @@ while ($repeat) {
|
|
|
parse_config_dep_select $depends{$config};
|
|
|
}
|
|
|
|
|
|
- if (defined($prompt{$config}) || !defined($selects{$config})) {
|
|
|
+ if (defined($prompts{$config}) || !defined($selects{$config})) {
|
|
|
next;
|
|
|
}
|
|
|
|