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 | 36dc978a0e888bf45ad2066378b5b49b0da4ea90 (patch) | |
tree | 24487dc26a4b73f01ca9172e6033f1d63e1672e1 /scripts | |
parent | c00e442f454a4ef2cd4ae6cda70b683aa8569f4f (diff) | |
download | upstream-36dc978a0e888bf45ad2066378b5b49b0da4ea90.tar.gz upstream-36dc978a0e888bf45ad2066378b5b49b0da4ea90.tar.bz2 upstream-36dc978a0e888bf45ad2066378b5b49b0da4ea90.zip |
[scripts] feeds: restore previously active feed after install_package(), fixes install all case for packages with inter-feed dependencies
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23171 3c298f89-4303-0410-b956-a3cf2f4a3e73
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]); } } } |