diff options
author | Nicolas Thill <nico@openwrt.org> | 2010-04-03 21:38:17 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2010-04-03 21:38:17 +0000 |
commit | e76080e98d896baf7b84726a84052f3fdf98c864 (patch) | |
tree | 516b4353da3644c1f1c686bf4edb98db4f518888 /package | |
parent | 97f83803858a6c18c643304d3d56bf75ec39fe5a (diff) | |
download | upstream-e76080e98d896baf7b84726a84052f3fdf98c864.tar.gz upstream-e76080e98d896baf7b84726a84052f3fdf98c864.tar.bz2 upstream-e76080e98d896baf7b84726a84052f3fdf98c864.zip |
[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')
-rw-r--r-- | package/opkg/Makefile | 2 | ||||
-rw-r--r-- | package/opkg/patches/000-upstream-fix_configure_order.patch | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile index 6894ae7cb4..81f7b4a4a0 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 0000000000..dcd1b547c2 --- /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; |