1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-15 19:25:31 +03:00
openwrt-xburst/package/opkg/patches/000-upstream-fix_configure_order.patch
nico 29752f54bb [package] opkg: add upstream patch fixing the order packages are configured (closes: #7057, #7058), bump release number
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20686 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-03 21:38:17 +00:00

16 lines
401 B
Diff

http://code.google.com/p/opkg/source/detail?r=521
--- a/libopkg/opkg_cmd.c
+++ b/libopkg/opkg_cmd.c
@@ -390,8 +390,8 @@ opkg_configure_packages(char *pkg_name)
goto error;
}
- for(i = 0; i < all->len; i++) {
- pkg = all->pkgs[i];
+ for(i = 0; i < ordered->len; i++) {
+ pkg = ordered->pkgs[i];
if (pkg_name && fnmatch(pkg_name, pkg->name, 0))
continue;