mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-04-28 16:17:38 -07:00
Package-Manager: Portage-3.0.30, Repoman-3.0.2 Closes: https://bugs.gentoo.org/751349 Closes: https://bugs.gentoo.org/831575 Signed-off-by: Alexander Lopatin <alopatindev@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/24074 Signed-off-by: Matthew Smith <matthew@gentoo.org>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 06c05271298c5cc76d6bc65747928928f202dd9d Mon Sep 17 00:00:00 2001
|
|
From: Alexander Lopatin <alopatindev@gmail.com>
|
|
Date: Fri, 4 Feb 2022 02:59:59 +0300
|
|
Subject: [PATCH] Disable warnings as errors https://bugs.gentoo.org/751349
|
|
https://bugs.gentoo.org/831575
|
|
|
|
---
|
|
qdevicemonitor/qdevicemonitor.pro | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/qdevicemonitor/qdevicemonitor.pro b/qdevicemonitor/qdevicemonitor.pro
|
|
index e76d266..6aa2ecf 100644
|
|
--- a/qdevicemonitor/qdevicemonitor.pro
|
|
+++ b/qdevicemonitor/qdevicemonitor.pro
|
|
@@ -61,11 +61,11 @@ FORMS += \
|
|
|
|
CONFIG += c++11 link_pkgconfig
|
|
|
|
-QMAKE_CXXFLAGS += -Werror -Wfatal-errors -pedantic-errors -pedantic -Wextra -Wall
|
|
+QMAKE_CXXFLAGS += -pedantic-errors -pedantic -Wextra -Wall
|
|
QMAKE_CXXFLAGS_RELEASE -= -O2
|
|
QMAKE_CXXFLAGS_RELEASE += -O3
|
|
|
|
-QMAKE_CFLAGS += -Werror -Wfatal-errors -pedantic-errors -pedantic -Wextra -Wall -std=c11
|
|
+QMAKE_CFLAGS += -pedantic-errors -pedantic -Wextra -Wall -std=c11
|
|
QMAKE_CFLAGS_RELEASE -= -O2
|
|
QMAKE_CFLAGS_RELEASE += -O3
|
|
|
|
--
|
|
2.34.1
|
|
|