mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +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
af0e30d545
commit
cac9aab107
4 changed files with 8 additions and 8 deletions
|
@ -30,10 +30,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
|
||||
|
||||
gstaudiofx = library('gstaudiofx',
|
||||
|
|
|
@ -26,10 +26,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
|
||||
|
||||
gstdeinterlace = library('gstdeinterlace',
|
||||
|
|
|
@ -11,10 +11,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
|
||||
|
||||
gstvideobox = library('gstvideobox',
|
||||
|
|
|
@ -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
|
||||
|
||||
gstvideomixer = library('gstvideomixer',
|
||||
|
|
Loading…
Reference in a new issue