forked from mirrors/nixpkgs
Merge pull request #107181 from lheckemann/generate-config-fix
linux: fix generate-config's handling of "no-choice" options
This commit is contained in:
commit
97c0e5d8a8
|
@ -61,6 +61,12 @@ sub runConfig {
|
|||
# Remember choice alternatives ("> 1. bla (FOO)" or " 2. bla (BAR) (NEW)").
|
||||
if ($line =~ /^\s*>?\s*(\d+)\.\s+.*?\(([A-Za-z0-9_]+)\)(?:\s+\(NEW\))?\s*$/) {
|
||||
$choices{$2} = $1;
|
||||
} else {
|
||||
# The list of choices has ended without us being
|
||||
# asked. This happens for options where only one value
|
||||
# is valid, for instance. The results can foul up
|
||||
# later options, so forget about it.
|
||||
%choices = ();
|
||||
}
|
||||
|
||||
$line = "";
|
||||
|
|
Loading…
Reference in a new issue