projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5395d14
)
more dependency fixes
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 20 Jun 2006 17:54:30 +0000
(17:54 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 20 Jun 2006 17:54:30 +0000
(17:54 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4024
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/gen_deps.pl
patch
|
blob
|
history
diff --git
a/scripts/gen_deps.pl
b/scripts/gen_deps.pl
index
0983186
..
de8572c
100755
(executable)
--- 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;
}
This page took
0.02132 seconds
and
4
git commands to generate.