From 6da384086b4c0ace083b7d66198aa15a4cd0fd5e Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 27 Sep 2022 14:28:29 +0100 Subject: build: Use copy argument for configure_file() Since we're copying a file. The empty configuration_data() trick is not necessary any more. --- doc/grilo/meson.build | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/grilo/meson.build b/doc/grilo/meson.build index ef5740f..c220cd0 100644 --- a/doc/grilo/meson.build +++ b/doc/grilo/meson.build @@ -5,9 +5,11 @@ # # Copyright (C) 2016 Igalia S.L. All rights reserved. -types = configure_file(input : 'grilo.types', - output : 'grilo.types', - configuration : configuration_data()) +types = configure_file( + input: 'grilo.types', + output: 'grilo.types', + copy: true, +) private_headers = [ 'grl-sync-priv.h', -- cgit v1.2.1