meson: Remove stray ], in O_DIRECTORY check

A stray ], was leftover from the autotools -> meson conversion. Remove
it.

Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
This commit is contained in:
Chris Packham 2020-05-13 11:12:22 +12:00 committed by Philip Withnall
parent 50ccd7b714
commit 15e73829aa

View File

@ -807,7 +807,7 @@ endif
#AC_MSG_CHECKING([])
if cc.compiles('''#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>],
#include <sys/stat.h>
void some_func (void) {
open(0, O_DIRECTORY, 0);
}''', name : 'open() option O_DIRECTORY')