mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
fix a small bug in the config merge/split (fixes buildbot error on ixp4xx)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6427 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -23,7 +23,7 @@ sub load_config($) {
|
||||
next;
|
||||
};
|
||||
/^# CONFIG_(.+?) is not set/ and do {
|
||||
$config{$1} = -1;
|
||||
$config{$1} = "#undef";
|
||||
next;
|
||||
};
|
||||
/^#/ and next;
|
||||
@@ -91,7 +91,7 @@ sub config_sub($$) {
|
||||
sub print_cfgline($$) {
|
||||
my $name = shift;
|
||||
my $val = shift;
|
||||
if ($val eq '-1') {
|
||||
if ($val eq '#undef') {
|
||||
print "# CONFIG_$name is not set\n";
|
||||
} else {
|
||||
print "CONFIG_$name=$val\n";
|
||||
|
||||
Reference in New Issue
Block a user