From d4c3751405c6f7a26b0ac0906c542f90bb077b0b Mon Sep 17 00:00:00 2001 From: Martin Lund Date: Sun, 13 Feb 2022 11:07:51 +0100 Subject: [PATCH] Meson cleanup --- man/meson.build | 6 ++---- src/bash-completion/meson.build | 3 +-- src/meson.build | 5 ++--- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/man/meson.build b/man/meson.build index 9945923..bf49040 100644 --- a/man/meson.build +++ b/man/meson.build @@ -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) diff --git a/src/bash-completion/meson.build b/src/bash-completion/meson.build index 00ae184..c393aef 100644 --- a/src/bash-completion/meson.build +++ b/src/bash-completion/meson.build @@ -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 == '' diff --git a/src/meson.build b/src/meson.build index 70eb4b6..c4de9bf 100644 --- a/src/meson.build +++ b/src/meson.build @@ -11,7 +11,7 @@ tio_sources = [ 'misc.c', 'tty.c', 'print.c' - ] +] if tcgets2 != '' tio_sources += 'setspeed2.c' @@ -19,7 +19,6 @@ endif executable('tio', tio_sources, - install: true, -) + install: true ) subdir('bash-completion')