aboutsummaryrefslogtreecommitdiffstats
path: root/package/opkg
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-10-22 17:16:13 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-10-22 17:16:13 +0000
commitb14afe135bb9431e9cad73cefd0916074ebca1a3 (patch)
treec5f442a43d98b66fa4384c39bd41393de1a3bf11 /package/opkg
parentd711594a60fe04f3a14fd905539e4dd07b1178d0 (diff)
downloadupstream-b14afe135bb9431e9cad73cefd0916074ebca1a3.tar.gz
upstream-b14afe135bb9431e9cad73cefd0916074ebca1a3.tar.bz2
upstream-b14afe135bb9431e9cad73cefd0916074ebca1a3.zip
[package] opkg: ignore Section, Source and Maintainer as well when ignoring descriptions, saves a few hundred KB memory
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18124 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg')
-rw-r--r--package/opkg/patches/008-fix_parsing_insanity.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/opkg/patches/008-fix_parsing_insanity.patch b/package/opkg/patches/008-fix_parsing_insanity.patch
index 03e03a86f0..5e5c0085f6 100644
--- a/package/opkg/patches/008-fix_parsing_insanity.patch
+++ b/package/opkg/patches/008-fix_parsing_insanity.patch
@@ -522,11 +522,11 @@
+ break;
+
+ case 'S':
-+ if(isGenericFieldType("Section:", line))
++ if(isGenericFieldType("Section:", line) && !no_desc)
+ pkg->section = parseGenericFieldType("Section", line);
+ else if(isGenericFieldType("Size:", line))
+ pkg->size = parseGenericFieldType("Size", line);
-+ else if(isGenericFieldType("Source:", line))
++ else if(isGenericFieldType("Source:", line) && !no_desc)
+ pkg->source = parseGenericFieldType("Source", line);
+ else if(isGenericFieldType("Status", line))
+ parseStatus(pkg, line);
@@ -546,7 +546,7 @@
+ let's parse it either way */
+ else if(isGenericFieldType("MD5Sum:", line))
+ pkg->md5sum = parseGenericFieldType("MD5Sum", line);
-+ else if(isGenericFieldType("Maintainer", line))
++ else if(isGenericFieldType("Maintainer", line) && !no_desc)
+ pkg->maintainer = parseGenericFieldType("Maintainer", line);
+ break;
+