mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

While the insane.bbclass upstream-status check hasn't been made default, users of meta-virtualization may have it enabled in their distros .. so the effect is the same. We must have this tracking tag in out patches. This is a bulk update to add the tag and silence the QA message. As packages get updated, the normal/routine process of checking the patches will continue, and the status fields may (or may not) get more useful. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
26 lines
639 B
Diff
26 lines
639 B
Diff
From 459ebaebf368869ae26eb8031ff44a789e238988 Mon Sep 17 00:00:00 2001
|
|
From: Cevat Bostancioglu <bostancioglucevat@gmail.com>
|
|
Date: Wed, 19 Jun 2019 20:36:56 +0300
|
|
Subject: [PATCH] WERROR override disabled.
|
|
|
|
WERROR override causes gcc sizeof-pointer-memaccess, format-truncation errors.
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
---
|
|
Makefile | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/Makefile b/Makefile
|
|
index 2ce753f..fe2e3cb 100644
|
|
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -4,6 +4,7 @@
|
|
|
|
CFLAGS += $(EXTRA_CFLAGS)
|
|
|
|
+WERROR = 0
|
|
ifeq ($(strip $(V)),)
|
|
ifeq ($(findstring s,$(filter-out --%,$(MAKEFLAGS))),)
|
|
E = @echo
|