scripts/metadata.pl: remove sdk specific config symbol override
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39916
This commit is contained in:
parent
2a5f6cadd1
commit
52dcb1f411
1 changed files with 1 additions and 8 deletions
|
@ -674,14 +674,7 @@ sub gen_package_mk() {
|
|||
|
||||
next if defined $pkg->{vdepends};
|
||||
|
||||
if ($ENV{SDK}) {
|
||||
$conf{$pkg->{src}} or do {
|
||||
$config = 'm';
|
||||
$conf{$pkg->{src}} = 1;
|
||||
};
|
||||
} else {
|
||||
$config = "\$(CONFIG_PACKAGE_$name)"
|
||||
}
|
||||
$config = "\$(CONFIG_PACKAGE_$name)";
|
||||
if ($config) {
|
||||
$pkg->{buildonly} and $config = "";
|
||||
print "package-$config += $pkg->{subdir}$pkg->{src}\n";
|
||||
|
|
Loading…
Reference in a new issue