From 090a9283290e2d48a696fdb8dda3f5c644deebf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 15 Aug 2019 12:56:06 +0100 Subject: [PATCH] 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 --- libs/gst/check/meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/gst/check/meson.build b/libs/gst/check/meson.build index 4211a789cd..1be0865991 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)