diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-11-21 09:39:53 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-11-21 09:39:53 +0000 |
commit | 7043880cb4d02768054c423ce0bc8e5a9236531f (patch) | |
tree | 90051dc5b678e445fa41459d71c613d2dd316e20 /packages/dpkg/files | |
parent | 1c138c48cfe6a3d2cf4961bb48cfff5f80c443ce (diff) |
dpkg: Sync with poky. -native doesn't need ncurses depends as dsleect isn't built. Ignore unknown fields in control files making deb builds quieter.
Diffstat (limited to 'packages/dpkg/files')
-rw-r--r-- | packages/dpkg/files/ignore_extra_fields.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/packages/dpkg/files/ignore_extra_fields.patch b/packages/dpkg/files/ignore_extra_fields.patch new file mode 100644 index 0000000000..43878463e9 --- /dev/null +++ b/packages/dpkg/files/ignore_extra_fields.patch @@ -0,0 +1,21 @@ + dpkg-deb/build.c | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +Index: dpkg-1.13.22/dpkg-deb/build.c +=================================================================== +--- dpkg-1.13.22.orig/dpkg-deb/build.c 2006-05-19 23:11:08.000000000 +0100 ++++ dpkg-1.13.22/dpkg-deb/build.c 2006-11-17 14:43:20.000000000 +0000 +@@ -220,11 +220,11 @@ void do_build(const char *const *argv) { + controlfile, checkedinfo->otherpriority); + warns++; + } +- for (field= checkedinfo->available.arbs; field; field= field->next) { ++ /*for (field= checkedinfo->available.arbs; field; field= field->next) { + fprintf(stderr, _("warning, `%s' contains user-defined field `%s'\n"), + controlfile, field->name); + warns++; +- } ++ }*/ + checkversion(checkedinfo->available.version.version,"(upstream) version",&errs); + checkversion(checkedinfo->available.version.revision,"Debian revision",&errs); + if (errs) ohshit(_("%d errors in control file"),errs); |