From 6c12289fc8171a09aa687f187d434171fb435dc1 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Mon, 9 Jun 2025 11:22:05 +0900 Subject: [PATCH] meson: fix doubled # before include Follow-up for b5337d1d524545e9938391e871f39cccc1d1fc14. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7f0ebab2e4b..71a94a7fbaa 100644 --- a/meson.build +++ b/meson.build @@ -580,7 +580,7 @@ assert(long_max > 100000) conf.set_quoted('LONG_MAX_STR', '@0@'.format(long_max)) foreach ident : [ - ['struct dirent64', '''##include '''], # for musl, but only for compile time check, see dirent-util.h + ['struct dirent64', '''#include '''], # for musl, but only for compile time check, see dirent-util.h ['struct sched_attr', '''#include '''], # since glibc-2.41 ] # We get -1 if the size cannot be determined -- 2.47.3