meson: fix Tizonia build

Was failing for release versions with

meson.build:414:10: ERROR: Can not set values on configuration object that has been used.

Caused by !69, but CI didn't notice at the time because it was set to a git version.
This commit is contained in:
Tim-Philipp Müller 2020-08-27 17:19:44 +01:00
parent c3bb1cd897
commit f3324e5350

View file

@ -1,6 +1,5 @@
infile = 'gstomx.conf.in'
outfile = 'gstomx.conf'
configure_file(input : infile,
output : outfile,
configuration : cdata,
tizonia_cdata = cdata
configure_file(input : 'gstomx.conf.in',
output : 'gstomx.conf',
configuration : tizonia_cdata,
install_dir : omx_conf_dir)