summaryrefslogtreecommitdiff
path: root/meson.build
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:29:05 +0100
commit0c1217f35b48177002c78fafc7c61541310faab9 (patch)
treef714b469cce48b6213fa321074d465aa03c55be4 /meson.build
parent901e252be7f0c490652fdbe9ddf358dda33834c5 (diff)
downloadgst-omx-0c1217f35b48177002c78fafc7c61541310faab9.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
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index b84a623..7ce4c4a 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')