summaryrefslogtreecommitdiffstats
path: root/package/opkg/patches/000-upstream-fix_configure_order.patch
diff options
context:
space:
mode:
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-18 23:23:40 +0000
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-18 23:23:40 +0000
commite2cc8ca357bfa06ee34a866901e8ea46a02f4176 (patch)
treec947c1704fbaa7f9617cee02ce257831d995f476 /package/opkg/patches/000-upstream-fix_configure_order.patch
parent193c04bbe7870ec7d6b2f66503b2ad10a5b4e896 (diff)
[package] opkg: update to r528, refresh patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21008 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg/patches/000-upstream-fix_configure_order.patch')
-rw-r--r--package/opkg/patches/000-upstream-fix_configure_order.patch15
1 files changed, 0 insertions, 15 deletions
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;