Merge pull request #66538 from singron/config-whitespace
kernel generate-config.pl: Allow whitespace in values
This commit is contained in:
commit
4f835fb2de
@ -28,7 +28,7 @@ open ANSWERS, "<$ENV{KERNEL_CONFIG}" or die "Could not open answer file";
|
|||||||
while (<ANSWERS>) {
|
while (<ANSWERS>) {
|
||||||
chomp;
|
chomp;
|
||||||
s/#.*//;
|
s/#.*//;
|
||||||
if (/^\s*([A-Za-z0-9_]+)(\?)?\s+(\S+)\s*$/) {
|
if (/^\s*([A-Za-z0-9_]+)(\?)?\s+(.*\S)\s*$/) {
|
||||||
$answers{$1} = $3;
|
$answers{$1} = $3;
|
||||||
$requiredAnswers{$1} = !(defined $2);
|
$requiredAnswers{$1} = !(defined $2);
|
||||||
} elsif (!/^\s*$/) {
|
} elsif (!/^\s*$/) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user