Skip to content
Snippets Groups Projects
Commit e9abf9f8 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

scripts/metadata.pl: fix ignoring missing host dependencies


Signed-off-by: default avatarFelix Fietkau <nbd@openwrt.org>

SVN-Revision: 39917
parent 52dcb1f4
No related branches found
No related tags found
No related merge requests found
......@@ -774,9 +774,10 @@ sub gen_package_mk() {
} elsif (defined($srcpackage{$dep})) {
$idx = $subdir{$dep}.$dep;
}
$idx .= $suffix;
undef $idx if $idx eq 'base-files';
if ($idx) {
$idx .= $suffix;
my $depline;
next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
next if $dep{$condition.":".$pkg->{src}."->".$idx};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment