diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-07-22 21:00:07 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-07-22 21:00:07 +0000 |
commit | 2335304a08827f4f083eba2bfb73163516c5fd57 (patch) | |
tree | d54824af9e02be484acdf6caecd364b786250516 /scripts | |
parent | b59bc92c6edf517d0a2d958530ac58fc58f74c32 (diff) | |
download | master-31e0f0ae-2335304a08827f4f083eba2bfb73163516c5fd57.tar.gz master-31e0f0ae-2335304a08827f4f083eba2bfb73163516c5fd57.tar.bz2 master-31e0f0ae-2335304a08827f4f083eba2bfb73163516c5fd57.zip |
build: ensure that reordering of KCONFIG lines are handled properly and that the final result does not depend on the package scan order
SVN-Revision: 32788
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kconfig.pl | 5 | ||||
-rwxr-xr-x | scripts/metadata.pl | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/scripts/kconfig.pl b/scripts/kconfig.pl index 8113273538..b91cdf397a 100755 --- a/scripts/kconfig.pl +++ b/scripts/kconfig.pl @@ -73,7 +73,10 @@ sub config_add($$$) { my %cfg = %$_; foreach my $config (keys %cfg) { - next if $mod_plus and $config{$config} and $config{$config} eq "y"; + if ($mod_plus and $config{$config}) { + next if $config{$config} eq "y"; + next if $cfg{$config} eq '#undef'; + } $config{$config} = $cfg{$config}; } } diff --git a/scripts/metadata.pl b/scripts/metadata.pl index d250a71978..bd6dbc54ac 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -115,6 +115,7 @@ sub gen_kconfig_overrides() { $val = $2; } if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) { + next if $kconfig{$config} eq 'y'; $kconfig{$config} = $val; } elsif (!$override) { $kconfig{$config} or $kconfig{$config} = 'n'; |