Meson cleanup

This commit is contained in:
Martin Lund 2022-02-13 11:07:51 +01:00
parent f788ae2ca4
commit d4c3751405
3 changed files with 5 additions and 9 deletions

View file

@ -8,10 +8,8 @@ conf.set('version_date', version_date)
manpage = configure_file(
input: files('tio.1.in'),
output: 'tio.1',
configuration: conf,
)
configuration: conf)
install_man(
manpage,
install_dir: man1dir,
)
install_dir: man1dir)

View file

@ -3,8 +3,7 @@ conf.set('baudrates', baudrates)
completion_file = configure_file( input: files('tio.in'),
output: 'tio',
configuration: conf,
)
configuration: conf )
bashcompletiondir = get_option('bashcompletiondir')
if bashcompletiondir == ''

View file

@ -19,7 +19,6 @@ endif
executable('tio',
tio_sources,
install: true,
)
install: true )
subdir('bash-completion')