From ad0db0a2e18dc85aa6b9cc81b269510386d71981 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 e30786e..98047f3 100644 --- a/meson.build +++ b/meson.build @@ -89,7 +89,7 @@ inc = include_directories( 'include', # for the generated config.h - meson.current_build_dir(), + '.', ) libmpdclient = library('mpdclient', -- 2.11.4.GIT