From 2a190557cf76ce0bbfeb3a18958ebbf34fba5982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Sun, 1 Apr 2018 16:22:16 +0200 Subject: [PATCH] meson: fix install dir for configure files Nixos configures a custom includedir. https://bugzilla.gnome.org/show_bug.cgi?id=794856 --- ges/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ges/meson.build b/ges/meson.build index fe6ca74057..b6ed462b53 100644 --- a/ges/meson.build +++ b/ges/meson.build @@ -136,7 +136,7 @@ version_data.set('GES_VERSION_NANO', gst_version_nano) configure_file(input : 'ges-version.h.in', output : 'ges-version.h', - install_dir : 'include/gstreamer-1.0/ges', + install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/ges'), configuration : version_data) install_headers(ges_headers, subdir : 'gstreamer-1.0/ges')