summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2022-09-27 14:28:29 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2022-09-28 12:16:54 +0100
commit6da384086b4c0ace083b7d66198aa15a4cd0fd5e (patch)
tree46e2191f528bbc89a968eddbb839a9e782fab93e
parentadceeaab3bed5d6ac086b53f798dcda610d69161 (diff)
downloadgrilo-6da384086b4c0ace083b7d66198aa15a4cd0fd5e.tar.gz
build: Use copy argument for configure_file()
Since we're copying a file. The empty configuration_data() trick is not necessary any more.
-rw-r--r--doc/grilo/meson.build8
1 files 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',