From 75a7e06d5d843e2535fc5a6c438ee3eb803c98ba Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Mon, 14 Feb 2022 20:25:33 +0100 Subject: [PATCH] Fix meson header check string --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 6b89daf..7230742 100644 --- a/meson.build +++ b/meson.build @@ -11,7 +11,7 @@ version_date = '2022-02-13' # Test for dynamic baudrate configuration interface compiler = meson.get_compiler('c') tcgets2 = '' -if compiler.check_header('') +if compiler.check_header('asm/termios.h') tcgets2 = compiler.get_define('TCGETS2', prefix: '#include ') endif