projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
abb09c1
)
[scripts] metadata.pl: fix a bug where dependency flags (@ and +) from a dependency...
author
nico
<nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 3 Oct 2009 20:01:22 +0000
(20:01 +0000)
committer
nico
<nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Sat, 3 Oct 2009 20:01:22 +0000
(20:01 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17840
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/metadata.pl
patch
|
blob
|
history
diff --git
a/scripts/metadata.pl
b/scripts/metadata.pl
index
41147d0
..
8f146c3
100755
(executable)
--- 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";
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;
my $vdep;
my $condition = $parent_condition;
This page took
0.023742 seconds
and
4
git commands to generate.