summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2017-05-09 13:27:28 +0000
committerTim-Philipp Müller <tim@centricular.com>2017-05-09 14:38:59 +0100
commita36241ab35b4aa0b0012f943e8f0928393cddb31 (patch)
treeb0f0a7e5100e2a3b73ef428a4d9d7cb4d84999c8
parent6dd6d0fea282e4931330ad0886a2df775574d106 (diff)
downloadgst-omx-a36241ab35b4aa0b0012f943e8f0928393cddb31.tar.gz
meson: fix config.h generation
"No such input file config.h.meson", but it's not needed anyway. https://bugzilla.gnome.org/show_bug.cgi?id=782382
-rw-r--r--meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 1ed52d9..c992276 100644
--- a/meson.build
+++ b/meson.build
@@ -245,9 +245,7 @@ endif
omx_conf_dir = join_paths (get_option ('prefix'), get_option ('sysconfdir'), 'xdg')
cdata.set_quoted('GST_OMX_CONFIG_DIR', omx_conf_dir)
-configure_file(input : 'config.h.meson',
- output : 'config.h',
- configuration : cdata)
+configure_file(output : 'config.h', configuration : cdata)
subdir('config')
subdir('examples')