mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
meson: Replace empty configuration_data() with copy keyword
Use 'copy' keyword to avoid meson warning message. Note that 'copy' keyword in configure_file() is available since meson 0.47.0 https://bugzilla.gnome.org/show_bug.cgi?id=797298
This commit is contained in:
parent
89c14c955b
commit
5adec0db4f
1 changed files with 2 additions and 2 deletions
|
@ -16,10 +16,10 @@ if have_orcc
|
||||||
else
|
else
|
||||||
orc_h = configure_file(input : orcsrc + '-dist.h',
|
orc_h = configure_file(input : orcsrc + '-dist.h',
|
||||||
output : orcsrc + '.h',
|
output : orcsrc + '.h',
|
||||||
configuration : configuration_data())
|
copy : true)
|
||||||
orc_c = configure_file(input : orcsrc + '-dist.c',
|
orc_c = configure_file(input : orcsrc + '-dist.c',
|
||||||
output : orcsrc + '.c',
|
output : orcsrc + '.c',
|
||||||
configuration : configuration_data())
|
copy : true)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
gstcompositor = library('gstcompositor',
|
gstcompositor = library('gstcompositor',
|
||||||
|
|
Loading…
Reference in a new issue