From 195000335cbba83deeabbcd25ce9627cb3e650f6 Mon Sep 17 00:00:00 2001 From: pixdamix Date: Wed, 10 Feb 2010 08:47:28 +0000 Subject: [PATCH] Use ordered list when configuring packages. Use the ordered list when configuring packages, and not the unordered one. Fix installation of some dependend packages. git-svn-id: http://opkg.googlecode.com/svn/trunk@521 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- libopkg/opkg_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libopkg/opkg_cmd.c b/libopkg/opkg_cmd.c index 0fa471e..63de047 100644 --- 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; -- 2.25.1