summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-20 17:54:30 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-06-20 17:54:30 +0000
commitc435c60b3bf57e606538398007f870eedaea36eb (patch)
tree88304b007e92e7128e002af2e7355f091b318d2a /scripts
parent5395d14488ac5d1fe5ef3985c63aad0218ee998f (diff)
more dependency fixes
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4024 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen_deps.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_deps.pl b/scripts/gen_deps.pl
index 0983186f8..de8572c76 100755
--- a/scripts/gen_deps.pl
+++ b/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;
}