diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-02 02:37:27 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-02 02:37:27 +0000 |
commit | adcfdc46e0c9b8179a8965731cac89895fa742ac (patch) | |
tree | 3251da38d2d23fde99846113fc13a2b742dd0b7c /scripts | |
parent | b7e25b807bc3e4b32d9455a00ac6310904796526 (diff) | |
download | upstream-adcfdc46e0c9b8179a8965731cac89895fa742ac.tar.gz upstream-adcfdc46e0c9b8179a8965731cac89895fa742ac.tar.bz2 upstream-adcfdc46e0c9b8179a8965731cac89895fa742ac.zip |
feeds: restore previously active feed after install_package(), fixes install all case for packages with inter-feed dependencies
SVN-Revision: 23171
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/feeds | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/feeds b/scripts/feeds index 5e27487e44..43c5c6dc43 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -402,6 +402,7 @@ sub install { next if $p->{vdepends}; if( $p->{name} ) { install_package($feed, $p->{name}) == 0 or $ret = 1; + get_feed($f->[1]); } } } |