From bf5fc85f37af5698d477edc5dae250bf8984ed00 Mon Sep 17 00:00:00 2001 From: ilovezfs Date: Sat, 22 Jul 2017 03:50:24 -0700 Subject: [PATCH] meson.build: fix build with meson > 0.38.1 Fixes the error "Tried to form an absolute path to a source dir. You should not do that but use relative paths instead." --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 09e8bc2..600b573 100644 --- a/meson.build +++ b/meson.build @@ -192,7 +192,7 @@ inc = include_directories( 'src', # for the generated config.h - meson.current_build_dir(), + '.', ) sources = [] -- 2.30.2