From: Tim-Philipp Müller Date: Thu, 15 Aug 2019 11:56:06 +0000 (+0100) Subject: meson: fix warning about configure_file() install kwarg X-Git-Tag: 1.16.2~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=090a9283290e2d48a696fdb8dda3f5c644deebf3;p=platform%2Fupstream%2Fgstreamer.git meson: fix warning about configure_file() install kwarg The install kwarg on configure_file() was only added in Meson 0.50 but we're targetting older versions as well, which caused a warning. The install kwarg is not needed here as we specify install_dir, so we can just drop it. Fixes #379 --- diff --git a/libs/gst/check/meson.build b/libs/gst/check/meson.build index 4211a78..1be0865 100644 --- a/libs/gst/check/meson.build +++ b/libs/gst/check/meson.build @@ -33,7 +33,6 @@ subdir('libcheck') configure_file(input : 'libcheck/check.h.in', output : 'internal-check.h', - install : true, install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/check'), configuration : check_cdata)