mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-16 21:14:44 +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
59f40eb1a0
commit
53b6c94d63
4 changed files with 8 additions and 8 deletions
|
@ -17,10 +17,10 @@ if have_orcc
|
|||
else
|
||||
orc_h = configure_file(input : orcsrc + '-dist.h',
|
||||
output : orcsrc + '.h',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
orc_c = configure_file(input : orcsrc + '-dist.c',
|
||||
output : orcsrc + '.c',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
endif
|
||||
|
||||
gstbayer = library('gstbayer',
|
||||
|
|
|
@ -16,10 +16,10 @@ if have_orcc
|
|||
else
|
||||
orc_h = configure_file(input : orcsrc + '-dist.h',
|
||||
output : orcsrc + '.h',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
orc_c = configure_file(input : orcsrc + '-dist.c',
|
||||
output : orcsrc + '.c',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
endif
|
||||
|
||||
gstcompositor = library('gstcompositor',
|
||||
|
|
|
@ -15,10 +15,10 @@ if have_orcc
|
|||
else
|
||||
orc_h = configure_file(input : orcsrc + '-dist.h',
|
||||
output : orcsrc + '.h',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
orc_c = configure_file(input : orcsrc + '-dist.c',
|
||||
output : orcsrc + '.c',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
endif
|
||||
|
||||
gstfieldanalysis = library('gstfieldanalysis',
|
||||
|
|
|
@ -22,10 +22,10 @@ if have_orcc
|
|||
else
|
||||
orc_h = configure_file(input : orcsrc + '-dist.h',
|
||||
output : orcsrc + '.h',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
orc_c = configure_file(input : orcsrc + '-dist.c',
|
||||
output : orcsrc + '.c',
|
||||
configuration : configuration_data())
|
||||
copy : true)
|
||||
endif
|
||||
|
||||
gstgaudioeffects = library('gstgaudieffects',
|
||||
|
|
Loading…
Reference in a new issue