From 932ac04e64390f3257fa252a5e857a58712ee003 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Wed, 2 Nov 2022 05:19:03 +0100 Subject: [PATCH] meson: use -Wno-cast-function-type for libmount python bindings The same way it is done by autotools. --- libmount/python/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/libmount/python/meson.build b/libmount/python/meson.build index 59d61d173d..57d9a2880b 100644 --- a/libmount/python/meson.build +++ b/libmount/python/meson.build @@ -24,6 +24,7 @@ python.extension_module( subdir : 'libmount', link_with : lib_mount, dependencies : python.dependency(), + c_args : [ '-Wno-cast-function-type' ], install : true) if build_python -- 2.47.3