diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-12-13 10:40:26 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-12-13 10:40:26 +0000 |
commit | d6864eb56d397a59b4172e2f78cae2a243ece1c0 (patch) | |
tree | 7ba296a403e51b8067361c951443dfb4fe8dfe32 /package | |
parent | 44743dc6b43aef4c9ff118be12082575fe180f09 (diff) | |
download | upstream-d6864eb56d397a59b4172e2f78cae2a243ece1c0.tar.gz upstream-d6864eb56d397a59b4172e2f78cae2a243ece1c0.tar.bz2 upstream-d6864eb56d397a59b4172e2f78cae2a243ece1c0.zip |
opkg: do not add blank "Provides:" fields to package metadata
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39039 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/system/opkg/patches/090-suppress-blank-provides-field.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/system/opkg/patches/090-suppress-blank-provides-field.patch b/package/system/opkg/patches/090-suppress-blank-provides-field.patch new file mode 100644 index 0000000000..7adf92235c --- /dev/null +++ b/package/system/opkg/patches/090-suppress-blank-provides-field.patch @@ -0,0 +1,11 @@ +--- a/libopkg/pkg.c ++++ b/libopkg/pkg.c +@@ -731,7 +731,7 @@ pkg_formatted_field(FILE *fp, pkg_t *pkg + } else if (strcasecmp(field, "Priority") == 0) { + fprintf(fp, "Priority: %s\n", pkg->priority); + } else if (strcasecmp(field, "Provides") == 0) { +- if (pkg->provides_count) { ++ if (pkg->provides_count > 1) { + fprintf(fp, "Provides:"); + for(i = 1; i < pkg->provides_count; i++) { + fprintf(fp, "%s %s", i == 1 ? "" : ",", |