mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-27 02:35:31 +00:00
There is new patch-status QA check in oe-core: https://git.openembedded.org/openembedded-core/commit/?id=76a685bfcf927593eac67157762a53259089ea8a This is temporary work around just to hide _many_ warnings from optional patch-status (if you add it to WARN_QA). This just added Upstream-Status: Pending everywhere without actually investigating what's the proper status. This is just to hide current QA warnings and to catch new .patch files being added without Upstream-Status, but the number of Pending patches is now terrible: 5 (26%) meta-xfce 6 (50%) meta-perl 15 (42%) meta-webserver 21 (36%) meta-gnome 25 (57%) meta-filesystems 26 (43%) meta-initramfs 45 (45%) meta-python 47 (55%) meta-multimedia 312 (63%) meta-networking 756 (61%) meta-oe Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
43 lines
1.2 KiB
Diff
43 lines
1.2 KiB
Diff
From ab981e1a973e83edb6ea19e6e84102f43ded0dcb Mon Sep 17 00:00:00 2001
|
||
From: Khem Raj <raj.khem@gmail.com>
|
||
Date: Thu, 13 Aug 2020 11:22:40 -0700
|
||
Subject: [PATCH 2/2] Do not include lib/md5.c into src/shar.c
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
ib/md5.o is part of libgnu.a that is linked to shar. There is no
|
||
point in linking md5.o twice into shar executable. Moreover SuSE
|
||
reports that this triggers a linking error with GCC 10:
|
||
|
||
/usr/lib64/gcc/x86_64-suse-linux/9/../../../../x86_64-suse-linux/bin/ld:
|
||
../lib/libgnu.a(md5.o): in function `md5_stream':
|
||
[ 30s] md5.c:(.text+0x15d): multiple definition of `md5_stream';
|
||
shar.o:shar.c:(.text+0x28): first defined here
|
||
|
||
<https://lists.gnu.org/archive/html/bug-gnu-utils/2020-01/msg00001.html>
|
||
|
||
Signed-off-by: Petr PÃsaÅ™ <address@hidden>
|
||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||
---
|
||
Upstream-Status: Pending
|
||
|
||
src/shar.c | 1 -
|
||
1 file changed, 1 deletion(-)
|
||
|
||
diff --git a/src/shar.c b/src/shar.c
|
||
index 11cbada..6d7ed1d 100644
|
||
--- a/src/shar.c
|
||
+++ b/src/shar.c
|
||
@@ -53,7 +53,6 @@ static const char cright_years_z[] =
|
||
|
||
#include "inttostr.h"
|
||
#include "liballoca.h"
|
||
-#include "md5.c"
|
||
#include "md5.h"
|
||
#include "quotearg.h"
|
||
#include "xalloc.h"
|
||
--
|
||
2.28.0
|
||
|