From cb1d5994951e88596ad67e8ea809731cc7a1fe1f Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 18 Dec 2018 12:32:53 +0000 Subject: [PATCH] meson: Use `copy` instead of an empty configuration The configure_file target has grown a `copy` argument to avoid using an empty configuration_data object since Meson 0.47. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index cc8d84204..64cd9ece2 100644 --- a/meson.build +++ b/meson.build @@ -149,7 +149,7 @@ girepo_lib = shared_library('girepository-1.0', # Copy to builddir for use with giscanner/dumper.py when running uninstalled configure_file(input : 'gdump.c', output : 'gdump.c', - configuration : configuration_data(), + copy: true, install_dir: join_paths(get_option('datadir'), 'gobject-introspection-1.0'), install : true, )