mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-31 21:18:09 -07:00
Closes: https://bugs.gentoo.org/919714 Signed-off-by: Alexander Lopatin <alopatindev@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/34264 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
32 lines
924 B
Diff
32 lines
924 B
Diff
From 5b2a6cbc4d64d5ee48d6fae1cf2a8f17335be634 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Lopatin <alopatindev@gmail.com>
|
|
Date: Wed, 13 Dec 2023 19:16:54 +0800
|
|
Subject: [PATCH] Disable pedantic errors
|
|
|
|
https://bugs.gentoo.org/919714
|
|
---
|
|
qdevicemonitor/qdevicemonitor.pro | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/qdevicemonitor/qdevicemonitor.pro b/qdevicemonitor/qdevicemonitor.pro
|
|
index 6aa2ecf..5327af0 100644
|
|
--- a/qdevicemonitor/qdevicemonitor.pro
|
|
+++ b/qdevicemonitor/qdevicemonitor.pro
|
|
@@ -61,11 +61,11 @@ FORMS += \
|
|
|
|
CONFIG += c++11 link_pkgconfig
|
|
|
|
-QMAKE_CXXFLAGS += -pedantic-errors -pedantic -Wextra -Wall
|
|
+QMAKE_CXXFLAGS += -Wextra -Wall
|
|
QMAKE_CXXFLAGS_RELEASE -= -O2
|
|
QMAKE_CXXFLAGS_RELEASE += -O3
|
|
|
|
-QMAKE_CFLAGS += -pedantic-errors -pedantic -Wextra -Wall -std=c11
|
|
+QMAKE_CFLAGS += -Wextra -Wall -std=c11
|
|
QMAKE_CFLAGS_RELEASE -= -O2
|
|
QMAKE_CFLAGS_RELEASE += -O3
|
|
|
|
--
|
|
2.41.0
|
|
|