projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
bcm963xx: rewrite irq handling code
[openwrt.git]
/
scripts
/
feeds
diff --git
a/scripts/feeds
b/scripts/feeds
index
2b50d5c
..
78e65ad
100755
(executable)
--- a/
scripts/feeds
+++ b/
scripts/feeds
@@
-264,13
+264,6
@@
sub install_package {
# newly installed packages set the source package
$installed{$src} and return 0;
# newly installed packages set the source package
$installed{$src} and return 0;
- # install all dependencies
- foreach my $dep (@{$pkg->{depends}}, @{$pkg->{builddepends}}) {
- next if $dep =~ /@/;
- $dep =~ s/^\+//;
- install_package($feed, $dep) == 0 or $ret = 1;
- }
-
# check previously installed packages
$installed{$name} and return 0;
$installed{$src} = 1;
# check previously installed packages
$installed{$name} and return 0;
$installed{$src} = 1;
@@
-286,6
+279,13
@@
sub install_package {
return 1;
};
return 1;
};
+ # install all dependencies
+ foreach my $dep (@{$pkg->{depends}}, @{$pkg->{builddepends}}) {
+ next if $dep =~ /@/;
+ $dep =~ s/^\+//;
+ install_package($feed, $dep) == 0 or $ret = 1;
+ }
+
return $ret;
}
return $ret;
}
This page took
0.026105 seconds
and
4
git commands to generate.