more dependency fixes

SVN-Revision: 4024
master
Felix Fietkau 19 years ago
parent 879a46444f
commit ea43523991
  1. 2
      openwrt/scripts/gen_deps.pl

@ -22,7 +22,7 @@ while ($line = <>) {
$line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do {
$pkg{$name}->{depends} ||= [];
foreach my $v (split /\s+/, $2) {
next if $v =~ /^@/;
next if $v =~ /^[\+]?@/;
$v =~ s/^\+//;
push @{$pkg{$name}->{depends}}, $v;
}

Loading…
Cancel
Save