meson: Replace empty configuration_data() with copy keyword
authorSeungha Yang <seungha.yang@navercorp.com>
Wed, 17 Oct 2018 12:09:22 +0000 (21:09 +0900)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 17 Oct 2018 13:08:47 +0000 (14:08 +0100)
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

gst/bayer/meson.build
gst/compositor/meson.build
gst/fieldanalysis/meson.build
gst/gaudieffects/meson.build

index f4b69dcb2f3ef1ecf25e9f93fffcfcdb17305cf1..f9f366d31bc3858bd4b34a208f08e63e5228bc9e 100644 (file)
@@ -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',
index 2af1b68e3299788fed6f15c8a01971f521a3a835..f379a31a07735ec986499597e617c48ddedc4e70 100644 (file)
@@ -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',
index 8c9a34d09ccba1e722405b4586002f7496a94035..2f1b73ac0a88ed62c34ec9d57acc10570835af9c 100644 (file)
@@ -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',
index a1646a63c16d62d0e5ad65fc265294172044c117..a001e480fda158e4d004a1106c520eda4bdd04ef 100644 (file)
@@ -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',