From: Nicolas Thill <nico@openwrt.org> Date: Sat, 3 Oct 2009 20:01:22 +0000 (+0000) Subject: metadata.pl: fix a bug where dependency flags (@ and +) from a dependency were inheri... X-Git-Tag: reboot~22303 X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=c9b0c63f0758f9d0f96846f0cdac3f167ba22b36;p=openwrt%2Fstaging%2Fblogic.git metadata.pl: fix a bug where dependency flags (@ and +) from a dependency were inherited by others SVN-Revision: 17840 --- diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 41147d0ab8e5..8f146c3b005d 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -415,8 +415,8 @@ sub mconf_depends { my @depends = @$depends; foreach my $depend (@depends) { my $m = "depends"; - $depend =~ s/^([@\+]+)//; - my $flags = $1; + my $flags = ""; + $depend =~ s/^([@\+]+)// and $flags = $1; my $vdep; my $condition = $parent_condition;