diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2017-05-09 13:27:28 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2017-05-09 14:38:59 +0100 |
commit | a36241ab35b4aa0b0012f943e8f0928393cddb31 (patch) | |
tree | b0f0a7e5100e2a3b73ef428a4d9d7cb4d84999c8 | |
parent | 6dd6d0fea282e4931330ad0886a2df775574d106 (diff) |
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.build | 4 |
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') |