fix a small bug in config.pl that tends to mess up kernel cmdlines
SVN-Revision: 6212
This commit is contained in:
parent
af9b87b99f
commit
048b3e684f
1 changed files with 2 additions and 2 deletions
|
@ -18,11 +18,11 @@ sub load_config($) {
|
||||||
open FILE, "$file" or die "can't open file";
|
open FILE, "$file" or die "can't open file";
|
||||||
while (<FILE>) {
|
while (<FILE>) {
|
||||||
chomp;
|
chomp;
|
||||||
/^CONFIG_(.+)=(.+)/ and do {
|
/^CONFIG_(.+?)=(.+)/ and do {
|
||||||
$config{$1} = $2;
|
$config{$1} = $2;
|
||||||
next;
|
next;
|
||||||
};
|
};
|
||||||
/^# CONFIG_(.+) is not set/ and do {
|
/^# CONFIG_(.+?) is not set/ and do {
|
||||||
$config{$1} = -1;
|
$config{$1} = -1;
|
||||||
next;
|
next;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue