diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-05-17 12:54:45 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-05-17 12:54:45 +0000 |
commit | 984ab9a139ff629821147cd1f5ad3049cf7805a1 (patch) | |
tree | d20a653d5cc1eebf5b0de4015aa5390580d4987e /scripts/metadata.pl | |
parent | 17e257925feb520d1ef06be9ca4e59f50cb6e9dc (diff) | |
download | upstream-984ab9a139ff629821147cd1f5ad3049cf7805a1.tar.gz upstream-984ab9a139ff629821147cd1f5ad3049cf7805a1.tar.bz2 upstream-984ab9a139ff629821147cd1f5ad3049cf7805a1.zip |
metadata: do not emit feature flag selects for targets which have subtargets - fixes a buildbot error cause by ssb not being blacklisted for lantiq falcon
SVN-Revision: 26926
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 9cb846539f..3de4087980 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -227,6 +227,8 @@ EOF } if (@{$target->{subtargets}} > 0) { $confstr .= "\tselect HAS_SUBTARGETS\n"; + } else { + $confstr .= $features; } if ($target->{arch} =~ /\w/) { @@ -246,7 +248,6 @@ EOF $flags =~ /\+/ and $mode = "select"; $flags =~ /@/ and $confstr .= "\t$mode $name\n"; } - $confstr .= $features; $confstr .= "$help\n\n"; print $confstr; } |