X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=package%2Fopkg%2Fpatches%2F000-upstream-fix_configure_order.patch;fp=package%2Fopkg%2Fpatches%2F000-upstream-fix_configure_order.patch;h=0000000000000000000000000000000000000000;hb=fbd6e15903836361773715e73bac036fce5b9720;hp=dcd1b547c288d2d323d02eb2a8bc4e271b8cfb66;hpb=ca482bd15acb05575778aed98c3dd97d80ef59c7;p=openwrt-10.03%2F.git 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 index dcd1b547c..000000000 --- a/package/opkg/patches/000-upstream-fix_configure_order.patch +++ /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;