From f3324e53504a6431b0101fb9e130c4b4aa1e409c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 27 Aug 2020 17:19:44 +0100 Subject: 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. --- config/tizonia/meson.build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/config/tizonia/meson.build b/config/tizonia/meson.build index abc6e94..86b191d 100644 --- a/config/tizonia/meson.build +++ b/config/tizonia/meson.build @@ -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) -- cgit v1.2.1