From ea435239915386927dc9c6e8d9200ce70e9aa89b Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 20 Jun 2006 17:54:30 +0000 Subject: [PATCH] more dependency fixes SVN-Revision: 4024 --- openwrt/scripts/gen_deps.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrt/scripts/gen_deps.pl b/openwrt/scripts/gen_deps.pl index 0983186f86..de8572c762 100755 --- a/openwrt/scripts/gen_deps.pl +++ b/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; }