mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
25 lines
803 B
Diff
25 lines
803 B
Diff
From 05e37466a1836f074ebe7601b1874762fedb9d1e Mon Sep 17 00:00:00 2001
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
Date: Tue, 15 Oct 2019 20:42:47 -0600
|
|
Subject: [PATCH] Remove -Wno-error=deprecated-copy
|
|
|
|
---
|
|
meson.build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index 8556b544..36cef5ce 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -54,7 +54,7 @@ endif
|
|
|
|
# a few compiler warning flags we always want enabled
|
|
add_global_arguments('-Werror=implicit-function-declaration', '-Wno-unused-parameter', language: 'c')
|
|
-add_global_arguments('-Wno-unused-parameter', '-Wno-error=deprecated-copy', language: 'cpp')
|
|
+add_global_arguments('-Wno-unused-parameter', language: 'cpp')
|
|
add_global_arguments('-DAS_COMPILATION', language : 'c')
|
|
|
|
#
|
|
--
|
|
2.22.0
|
|
|