From c42eb5b503a44b0b062b041d2e8a0138ce21a0c7 Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Thu, 27 Oct 2022 12:32:07 +0900 Subject: Fix the build issue on meson when -g option is added to c_args Fixes https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/335 --- src/cutout.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/cutout.py b/src/cutout.py index 323eec8..6b46529 100644 --- 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') -- cgit v1.2.1