aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/metadata.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-07-22 21:00:07 +0000
committerFelix Fietkau <nbd@openwrt.org>2012-07-22 21:00:07 +0000
commite5ddfdef84992918489ae911c3dc0954d1a805b5 (patch)
tree1bf7bee3e102c76985b0d433ed4bc341afc0a5c5 /scripts/metadata.pl
parent7da8fc992d778092da06f7346a633c0dd7c2e0a6 (diff)
downloadmaster-187ad058-e5ddfdef84992918489ae911c3dc0954d1a805b5.tar.gz
master-187ad058-e5ddfdef84992918489ae911c3dc0954d1a805b5.tar.bz2
master-187ad058-e5ddfdef84992918489ae911c3dc0954d1a805b5.zip
build: ensure that reordering of KCONFIG lines are handled properly and that the final result does not depend on the package scan order
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32788 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-xscripts/metadata.pl1
1 files changed, 1 insertions, 0 deletions
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';