Fix meson header check string

This commit is contained in:
Martin Lund 2022-02-14 20:25:33 +01:00
parent 2f51e8368f
commit 75a7e06d5d

View file

@ -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('<asm/termios.h>')
if compiler.check_header('asm/termios.h')
tcgets2 = compiler.get_define('TCGETS2', prefix: '#include <asm/termios.h>')
endif