Rename the tuhigui script to tuhi-gui

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
pull/145/head
Peter Hutterer 2019-07-18 11:05:58 +10:00
parent a724495502
commit fec00a2190
3 changed files with 5 additions and 5 deletions

View File

@ -51,13 +51,13 @@ sys.path.insert(1, '@0@')
print('Running from source tree, using local files')
'''.format(meson.source_root()))
configure_file(input: 'tuhigui.in',
output: 'tuhi.gui',
configure_file(input: 'tuhi-gui.in',
output: 'tuhi-gui',
configuration: config_tuhigui,
install_dir: bindir)
configure_file(input: 'tuhigui.in',
output: 'tuhi.gui.devel',
configure_file(input: 'tuhi-gui.in',
output: 'tuhi-gui.devel',
configuration: config_tuhigui_devel)
meson.add_install_script('meson_install.sh')

View File

@ -18,7 +18,7 @@ def start_tuhi():
subprocess.run('tuhi')
def start_tuhigui():
subprocess.run('tuhigui')
subprocess.run('tuhi-gui')
if __name__ == '__main__':
tuhi = Process(target=start_tuhi)