mirror of
https://git.yoctoproject.org/poky
synced 2026-02-27 11:59:40 +01:00
dpkg: Make it a little quieter by removing extra fields warnings
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@870 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
require dpkg.inc
|
||||
PR = "r1"
|
||||
PR = "r2"
|
||||
DEPENDS += "ncurses-native zlib-native virtual/update-alternatives-native"
|
||||
SRC_URI += "file://noman.patch;patch=1"
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@ LICENSE = "GPL"
|
||||
SECTION = "base"
|
||||
|
||||
SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.gz \
|
||||
file://ignore_extra_fields.patch;patch=1 \
|
||||
file://noupdalt.patch;patch=1"
|
||||
|
||||
S = "${WORKDIR}/dpkg-${PV}"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
require dpkg.inc
|
||||
PR = "r3"
|
||||
PR = "r4"
|
||||
DEPENDS += "ncurses zlib bzip2"
|
||||
SRC_URI += "file://noman.patch;patch=1"
|
||||
|
||||
|
||||
21
meta/packages/dpkg/files/ignore_extra_fields.patch
Normal file
21
meta/packages/dpkg/files/ignore_extra_fields.patch
Normal file
@@ -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);
|
||||
Reference in New Issue
Block a user