From bfc75de77897451e13c8d982f0b4b70d0e19bdc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Tue, 17 Dec 2019 15:39:24 +0100 Subject: [PATCH] libfprint: Make sure we install fp-enums.h in the right folder Since we were not explictly setting the install_dir, it was endind up in $PREFIX/include by default, while we use our project name as subfolder. --- libfprint/meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libfprint/meson.build b/libfprint/meson.build index c4984e2..50df8a0 100644 --- a/libfprint/meson.build +++ b/libfprint/meson.build @@ -176,7 +176,9 @@ other_sources = [] fp_enums = gnome.mkenums_simple('fp-enums', sources: libfprint_public_headers, - install_header : true) + install_header: true, + install_dir: get_option('includedir') / meson.project_name(), +) fp_enums_h = fp_enums[1] fpi_enums = gnome.mkenums_simple('fpi-enums',