mirror of
https://github.com/yann64/haikuports.git
synced 2026-05-05 14:38:51 +02:00
25 lines
678 B
Plaintext
25 lines
678 B
Plaintext
From ad0db0a2e18dc85aa6b9cc81b269510386d71981 Mon Sep 17 00:00:00 2001
|
|
From: ilovezfs <ilovezfs@icloud.com>
|
|
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',
|