mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
meson: Fix installing configured files
This commit is contained in:
parent
41b005963f
commit
032fccd7af
2 changed files with 3 additions and 5 deletions
|
@ -4,6 +4,7 @@ launcher_configure = configuration_data()
|
|||
launcher_configure.set('GST_VALIDATE_TESTSUITE_VERSION', '"@0@"'.format(TESTUITE_VERSION))
|
||||
configure_file(input : 'config.py.in',
|
||||
output : 'config.py',
|
||||
install_dir: _launcherdir,
|
||||
configuration : launcher_configure)
|
||||
|
||||
_sources = ['baseclasses.py',
|
||||
|
@ -14,8 +15,7 @@ _sources = ['baseclasses.py',
|
|||
'httpserver.py',
|
||||
'RangeHTTPServer.py',
|
||||
'utils.py',
|
||||
'vfb_server.py',
|
||||
'config.py']
|
||||
'vfb_server.py']
|
||||
|
||||
install_data(sources: _sources,
|
||||
install_dir: _launcherdir)
|
||||
|
|
|
@ -29,8 +29,6 @@ tmpconf.set('BUILDDIR', meson.current_build_dir())
|
|||
tmpconf.set('SRCDIR', meson.current_source_dir())
|
||||
|
||||
configure_file(input : 'gst-validate-launcher.in',
|
||||
install_dir: get_option('bindir'),
|
||||
output : 'gst-validate-launcher',
|
||||
configuration : tmpconf)
|
||||
|
||||
install_data(sources: 'gst-validate-launcher',
|
||||
install_dir: get_option('bindir'))
|
||||
|
|
Loading…
Reference in a new issue