From: ilovezfs Date: Sat, 22 Jul 2017 10:50:24 +0000 (-0700) Subject: meson.build: fix build with meson > 0.38.1 X-Git-Tag: v0.28~19 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bf5fc85f37af5698d477edc5dae250bf8984ed00;p=ncmpc.git 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." --- 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 = []