mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 11:32:38 +00:00
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:
parent
d7d79f2c54
commit
d90d771a9a
1 changed files with 0 additions and 1 deletions
|
@ -33,7 +33,6 @@ subdir('libcheck')
|
||||||
|
|
||||||
configure_file(input : 'libcheck/check.h.in',
|
configure_file(input : 'libcheck/check.h.in',
|
||||||
output : 'internal-check.h',
|
output : 'internal-check.h',
|
||||||
install : true,
|
|
||||||
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/check'),
|
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/check'),
|
||||||
configuration : check_cdata)
|
configuration : check_cdata)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue