diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-18 23:23:40 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-18 23:23:40 +0000 |
commit | d429130518489e8186c5ea2ee8cd655d7f1aa2eb (patch) | |
tree | d99db6f1ae5aa114180717d9e9e5761880221c7a /package/opkg/patches/000-upstream-fix_configure_order.patch | |
parent | fa432efa8e500303bd9ed4f07fae63f2ab238c12 (diff) | |
download | mtk-20170518-d429130518489e8186c5ea2ee8cd655d7f1aa2eb.zip mtk-20170518-d429130518489e8186c5ea2ee8cd655d7f1aa2eb.tar.gz mtk-20170518-d429130518489e8186c5ea2ee8cd655d7f1aa2eb.tar.bz2 |
opkg: update to r528, refresh patches
SVN-Revision: 21008
Diffstat (limited to 'package/opkg/patches/000-upstream-fix_configure_order.patch')
-rw-r--r-- | package/opkg/patches/000-upstream-fix_configure_order.patch | 15 |
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 dcd1b54..0000000 --- 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; |