From 15e73829aa6814748ed475c1f9b0d0c112c80fa5 Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Wed, 13 May 2020 11:12:22 +1200 Subject: [PATCH] meson: Remove stray ], in O_DIRECTORY check A stray ], was leftover from the autotools -> meson conversion. Remove it. Signed-off-by: Chris Packham --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index fc61b02ee9..961134d532 100644 --- a/meson.build +++ b/meson.build @@ -807,7 +807,7 @@ endif #AC_MSG_CHECKING([]) if cc.compiles('''#include #include - #include ], + #include void some_func (void) { open(0, O_DIRECTORY, 0); }''', name : 'open() option O_DIRECTORY') -- GitLab