mirror of https://github.com/hak5/openwrt.git
metadata: fix handling of multiple build dependencies with different conditions
SVN-Revision: 25505lede-17.01
parent
e6a0ebc989
commit
8d0cf8fde2
|
@ -738,7 +738,7 @@ sub gen_package_mk() {
|
||||||
if ($idx) {
|
if ($idx) {
|
||||||
my $depline;
|
my $depline;
|
||||||
next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
|
next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
|
||||||
next if $dep{$pkg->{src}."->".$idx};
|
next if $dep{$condition.":".$pkg->{src}."->".$idx};
|
||||||
next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
|
next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
|
||||||
my $depstr;
|
my $depstr;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue