aboutsummaryrefslogtreecommitdiffstats
path: root/package/opkg/Makefile
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-10-22 08:46:55 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-10-22 08:46:55 +0000
commit3231dce5aa4afff0c3b4a40f082f13035d9f341f (patch)
treea5c90b0669563b0cb372d372d427cb0aef1d9b26 /package/opkg/Makefile
parent991a35c6a621a3b03a0a6de6aa3045b951a7b627 (diff)
downloadupstream-3231dce5aa4afff0c3b4a40f082f13035d9f341f.tar.gz
upstream-3231dce5aa4afff0c3b4a40f082f13035d9f341f.tar.bz2
upstream-3231dce5aa4afff0c3b4a40f082f13035d9f341f.zip
opkg: - replace package list parser by something that works with fixed buffers to avoid slurping the whole file into memory during parsing - fix a possible null pointer dereference in opkg_remove_cmd() - get rid of upgrade, it cannot upgrade single packages and kills the system in most cases - get rid of the flag operation, not needed - bump package revision
SVN-Revision: 18119
Diffstat (limited to 'package/opkg/Makefile')
-rw-r--r--package/opkg/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/opkg/Makefile b/package/opkg/Makefile
index 68bc8efe10..9b67e3982c 100644
--- a/package/opkg/Makefile
+++ b/package/opkg/Makefile
@@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=opkg
PKG_REV:=215
PKG_VERSION:=$(PKG_REV)
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE_PROTO:=svn
PKG_SOURCE_VERSION:=$(PKG_REV)
166'>166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223