Browse Source

scripts: fix build warning when overriding packages

If core packages are overridden, CONFIG_OVERRIDE_PKGS is set
based on the scan order of packages, which eventually causes
that config value to be modified on each build and with
that causes the build process to warn for configuration
being out of sync.

This commit changes the CONFIG_OVERRIDE_PKGS to be sorted
and prevents that false warning.

Signed-off-by: Zefir Kurtisi <[email protected]>
Zefir Kurtisi 9 years ago
parent
commit
cf458de382
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/package-metadata.pl

+ 1 - 1
scripts/package-metadata.pl

@@ -351,7 +351,7 @@ sub print_package_overrides() {
 	keys %overrides > 0 or return;
 	keys %overrides > 0 or return;
 	print "\tconfig OVERRIDE_PKGS\n";
 	print "\tconfig OVERRIDE_PKGS\n";
 	print "\t\tstring\n";
 	print "\t\tstring\n";
-	print "\t\tdefault \"".join(" ", keys %overrides)."\"\n\n";
+	print "\t\tdefault \"".join(" ", sort keys %overrides)."\"\n\n";
 }
 }
 
 
 sub gen_package_config() {
 sub gen_package_config() {