From 415e0e68af35c54d5610180edb1af284b3582e1b Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 25 Jul 2018 07:04:11 +0530 Subject: [PATCH] meson: Use copy: true for configure_file() Fixes a warning. --- docs/gst/meson.build | 2 +- docs/libs/meson.build | 2 +- meson.build | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/gst/meson.build b/docs/gst/meson.build index b9798232f9..d412bd3804 100644 --- a/docs/gst/meson.build +++ b/docs/gst/meson.build @@ -1,6 +1,6 @@ types = configure_file(input : 'gstreamer.types.in', output : 'gstreamer.types', - configuration : configuration_data()) + copy: true) gnome.gtkdoc('gstreamer', main_sgml : 'gstreamer-docs.sgml', diff --git a/docs/libs/meson.build b/docs/libs/meson.build index 4748276e34..f46be827d1 100644 --- a/docs/libs/meson.build +++ b/docs/libs/meson.build @@ -1,6 +1,6 @@ types = configure_file(input : 'gstreamer-libs.types', output : 'gstreamer-libs.types', - configuration : configuration_data()) + copy: true) gnome.gtkdoc('gstreamer-libs', main_sgml : 'gstreamer-libs-docs.sgml', diff --git a/meson.build b/meson.build index 74300ec491..d7bd86dbfd 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('gstreamer', 'c', version : '1.15.0.1', - meson_version : '>= 0.46', + meson_version : '>= 0.47', default_options : [ 'warning_level=1', 'buildtype=debugoptimized' ])