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
This commit is contained in:
Tim-Philipp Müller 2019-08-15 12:56:06 +01:00
parent d7d79f2c54
commit d90d771a9a

View 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)