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

don't generate invalid dependency lines in sdk mode

SVN-Revision: 4035
parent 00dee08d
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,7 @@ foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) { ...@@ -52,7 +52,7 @@ foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
my $idx; my $idx;
if (defined $pkg{$dep}->{src}) { if (defined $pkg{$dep}->{src}) {
($pkg{$name}->{src} ne $pkg{$dep}->{src}) and $idx = $pkg{$dep}->{src}; ($pkg{$name}->{src} ne $pkg{$dep}->{src}) and $idx = $pkg{$dep}->{src};
} elsif (defined $pkg{$dep}) { } elsif (defined($pkg{$dep}) && !$options{SDK}) {
$idx = $dep; $idx = $dep;
} }
if ($idx) { if ($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