meson: fix warning about configure_file() install kwarg
authorTim-Philipp Müller <tim@centricular.com>
Thu, 15 Aug 2019 11:56:06 +0000 (12:56 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Thu, 15 Aug 2019 13:16:51 +0000 (14:16 +0100)
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

libs/gst/check/meson.build

index 4211a78..1be0865 100644 (file)
@@ -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)