projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3439dec
)
scripts/metadata.pl: fix handling of multiple conditional depends on the same package
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Mar 2010 15:51:40 +0000
(15:51 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 9 Mar 2010 15:51:40 +0000
(15:51 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20085
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/metadata.pl
patch
|
blob
|
history
diff --git
a/scripts/metadata.pl
b/scripts/metadata.pl
index
c963964
..
70d1b40
100755
(executable)
--- a/
scripts/metadata.pl
+++ b/
scripts/metadata.pl
@@
-423,6
+423,8
@@
sub mconf_depends {
my $vdep;
my $condition = $parent_condition;
+ next if $seen->{$depend};
+ $seen->{$depend} = 1;
if ($depend =~ /^(.+):(.+)$/) {
if ($1 ne "PACKAGE_$pkgname") {
if ($condition) {
@@
-433,9
+435,7
@@
sub mconf_depends {
}
$depend = $2;
}
- next if $seen->{$depend};
next if $package{$depend} and $package{$depend}->{buildonly};
- $seen->{$depend} = 1;
if ($vdep = $package{$depend}->{vdepends}) {
$depend = join("||", map { "PACKAGE_".$_ } @$vdep);
} else {
This page took
0.023378 seconds
and
4
git commands to generate.