Skip to content
Snippets Groups Projects
Commit bf21c2f6 authored by Thibault Saunier's avatar Thibault Saunier
Browse files

validate:launcher: Fix typo in meson build definitions

parent 9caee62b
No related branches found
No related tags found
Loading
......@@ -12,10 +12,10 @@ gst_version_minor = version_arr[1]
gst_version_micro = version_arr[2]
if version_arr.length() == 4
gst_version_nano = version_arr[3]
TESTUITE_VERSION = 'master'
TESTSUITE_VERSION = 'master'
else
gst_version_nano = 0
TESTUITE_VERSION = '@0@.@1@'.format(gst_version_major, gst_version_minor)
TESTSUITE_VERSION = '@0@.@1@'.format(gst_version_major, gst_version_minor)
endif
apiversion = '1.0'
......
_launcherdir = get_option('libdir') + '/gst-validate-launcher/python/launcher/'
launcher_configure = configuration_data()
launcher_configure.set('GST_VALIDATE_TESTSUITE_VERSION', '"@0@"'.format(TESTUITE_VERSION))
launcher_configure.set('GST_VALIDATE_TESTSUITE_VERSION', '"@0@"'.format(TESTSUITE_VERSION))
launcher_configure.set('BUILDDIR', meson.build_root())
configure_file(input : 'config.py.in',
output : 'config.py',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment