projects
/
openwrt
/
staging
/
jow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
879a464
)
more dependency fixes
author
Felix Fietkau
<nbd@openwrt.org>
Tue, 20 Jun 2006 17:54:30 +0000
(17:54 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Tue, 20 Jun 2006 17:54:30 +0000
(17:54 +0000)
SVN-Revision: 4024
openwrt/scripts/gen_deps.pl
patch
|
blob
|
history
diff --git
a/openwrt/scripts/gen_deps.pl
b/openwrt/scripts/gen_deps.pl
index 0983186f8614f84d2d3e0f94e076debf2c78980e..de8572c762bedc58121ad7d66331a09645afabee 100755
(executable)
--- 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;
}