mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 04:36:20 +00:00
validate:launcher: Fix typo in meson build definitions
This commit is contained in:
parent
9caee62bc6
commit
bf21c2f64e
2 changed files with 3 additions and 3 deletions
|
@ -12,10 +12,10 @@ gst_version_minor = version_arr[1]
|
||||||
gst_version_micro = version_arr[2]
|
gst_version_micro = version_arr[2]
|
||||||
if version_arr.length() == 4
|
if version_arr.length() == 4
|
||||||
gst_version_nano = version_arr[3]
|
gst_version_nano = version_arr[3]
|
||||||
TESTUITE_VERSION = 'master'
|
TESTSUITE_VERSION = 'master'
|
||||||
else
|
else
|
||||||
gst_version_nano = 0
|
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
|
endif
|
||||||
|
|
||||||
apiversion = '1.0'
|
apiversion = '1.0'
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
_launcherdir = get_option('libdir') + '/gst-validate-launcher/python/launcher/'
|
_launcherdir = get_option('libdir') + '/gst-validate-launcher/python/launcher/'
|
||||||
|
|
||||||
launcher_configure = configuration_data()
|
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())
|
launcher_configure.set('BUILDDIR', meson.build_root())
|
||||||
configure_file(input : 'config.py.in',
|
configure_file(input : 'config.py.in',
|
||||||
output : 'config.py',
|
output : 'config.py',
|
||||||
|
|
Loading…
Reference in a new issue