[backfire] merge r23050, r23052, r23159 and r23174
[openwrt-10.03/.git] / package / opkg / patches / 000-upstream-fix_configure_order.patch
diff --git a/package/opkg/patches/000-upstream-fix_configure_order.patch b/package/opkg/patches/000-upstream-fix_configure_order.patch
deleted file mode 100644 (file)
index dcd1b54..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-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;