Line 0
Link Here
|
|
|
1 |
From 44a812ea51223d82f21a098a2d45fcc5c329ce7a Mon Sep 17 00:00:00 2001 |
2 |
From: Tobias Stoeckmann <tobias@stoeckmann.org> |
3 |
Date: Tue, 12 Mar 2019 11:46:24 +0100 |
4 |
Subject: [PATCH] Fix meson.build for meson 0.50.0. |
5 |
|
6 |
Since meson 0.50.0 it is not possible anymore to specify an |
7 |
absolute directory for subdir. To keep current functionality, |
8 |
use install_dir instead. |
9 |
|
10 |
atspi/meson.build:60:0: ERROR: Subdir keyword must not be an absolute path. |
11 |
|
12 |
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> |
13 |
--- |
14 |
atspi/meson.build | 2 +- |
15 |
1 file changed, 1 insertion(+), 1 deletion(-) |
16 |
|
17 |
--- atspi/meson.build.orig 2019-04-11 17:26:18 UTC |
18 |
+++ atspi/meson.build |
19 |
@@ -57,7 +57,7 @@ atspi_headers = [ |
20 |
|
21 |
atspi_includedir = join_paths(get_option('prefix'), get_option('includedir'), 'at-spi-2.0', 'atspi') |
22 |
|
23 |
-install_headers(atspi_headers, subdir: atspi_includedir) |
24 |
+install_headers(atspi_headers, install_dir: atspi_includedir) |
25 |
|
26 |
atspi_enums = gnome.mkenums('atspi-enum-types', |
27 |
sources: [ 'atspi-constants.h', 'atspi-types.h' ], |