summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Stoeckmann <tobias@stoeckmann.org>2019-03-12 11:46:24 +0100
committerMike Gorse <mgorse@alum.wpi.edu>2019-03-12 11:54:01 -0500
commite5c55c26a5d21fff1b88c90ee7aee4269788797c (patch)
tree51890ec2399b77a41e8a95cf32cbe2e2712cda99
parentcd55a73884a1371718f45dd22340b5d4ddf41dbb (diff)
downloadat-spi2-core-e5c55c26a5d21fff1b88c90ee7aee4269788797c.tar.gz
Fix meson.build for meson 0.50.0.
Since meson 0.50.0 it is not possible anymore to specify an absolute directory for subdir. To keep current functionality, use install_dir instead. atspi/meson.build:60:0: ERROR: Subdir keyword must not be an absolute path. Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
-rw-r--r--atspi/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/atspi/meson.build b/atspi/meson.build
index b7a9357d..2a6915d7 100644
--- a/atspi/meson.build
+++ b/atspi/meson.build
@@ -57,7 +57,7 @@ atspi_headers = [
atspi_includedir = join_paths(get_option('prefix'), get_option('includedir'), 'at-spi-2.0', 'atspi')
-install_headers(atspi_headers, subdir: atspi_includedir)
+install_headers(atspi_headers, install_dir: atspi_includedir)
atspi_enums = gnome.mkenums('atspi-enum-types',
sources: [ 'atspi-constants.h', 'atspi-types.h' ],