From 1e36fe5dc490ed64736591acbcd32876ea1a69dd Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Fri, 23 Mar 2018 17:18:56 +0000 Subject: [PATCH] meson: fix header check message before: Checking if "endian.h works" compiles: YES after: Checking if "endian.h" compiles: YES Signed-off-by: Eric Engestrom Reviewed-by: Emil Velikov --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 041d2bfc70d..f210eeb2530 100644 --- a/meson.build +++ b/meson.build @@ -917,7 +917,7 @@ elif cc.has_header_symbol('sys/mkdev.h', 'major') endif foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h'] - if cc.compiles('#include <@0@>'.format(h), name : '@0@ works'.format(h)) + if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h)) pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify()) endif endforeach -- 2.30.2