summaryrefslogtreecommitdiff
path: root/media-libs/fontconfig/files/fontconfig-2.14.1-gperf-meson-debugging.patch
blob: fb5e8a14f8b843db5b5f414468d8a48a0a60c8a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
https://gitlab.freedesktop.org/fontconfig/fontconfig/-/merge_requests/240
https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/335

From c42eb5b503a44b0b062b041d2e8a0138ce21a0c7 Mon Sep 17 00:00:00 2001
From: Akira TAGOH <akira@tagoh.org>
Date: Thu, 27 Oct 2022 12:32:07 +0900
Subject: [PATCH] Fix the build issue on meson when -g option is added to
 c_args

Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/335
--- a/src/cutout.py
+++ b/src/cutout.py
@@ -24,7 +24,8 @@ if __name__== '__main__':
                 break
 
     cpp = args[1]
-    ret = subprocess.run(cpp + host_cargs + [args[0].input], stdout=subprocess.PIPE, check=True)
+    cpp_args = [i for i in host_cargs + [args[0].input] if not i.startswith('-g')]
+    ret = subprocess.run(cpp + cpp_args, stdout=subprocess.PIPE, check=True)
 
     stdout = ret.stdout.decode('utf8')
 
GitLab