summaryrefslogtreecommitdiffstats
path: root/package/opkg
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-03 21:38:17 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2010-04-03 21:38:17 +0000
commit29752f54bbcb979a2f4734b4f2938eef80dacca0 (patch)
tree516b4353da3644c1f1c686bf4edb98db4f518888 /package/opkg
parentf0469e585740ca001dfed50af3b29cd6fad89286 (diff)
[package] opkg: add upstream patch fixing the order packages are configured (closes: #7057, #7058), bump release number
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@20686 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg')
-rw-r--r--package/opkg/Makefile2
-rw-r--r--package/opkg/patches/000-upstream-fix_configure_order.patch15
2 files changed, 16 insertions, 1 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile
index 6894ae7cb..81f7b4a4a 100644
--- a/package/opkg/Makefile
+++ b/package/opkg/Makefile
@@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=opkg
PKG_REV:=513
PKG_VERSION:=$(PKG_REV)
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE_PROTO:=svn
PKG_SOURCE_VERSION:=$(PKG_REV)
diff --git a/package/opkg/patches/000-upstream-fix_configure_order.patch b/package/opkg/patches/000-upstream-fix_configure_order.patch
new file mode 100644
index 000000000..dcd1b547c
--- /dev/null
+++ b/package/opkg/patches/000-upstream-fix_configure_order.patch
@@ -0,0 +1,15 @@
+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;