Add missed .1 extension for manpage [skip ci]

This commit is contained in:
Lzu Tao 2018-12-02 00:18:00 +07:00
parent cbf2a924dd
commit 7da18bc85a

View File

@ -88,7 +88,7 @@ install_man(join_paths(zstd_rootdir, 'programs/zstd.1'),
InstallSymlink_py = '../InstallSymlink.py'
zstd_man1_dir = join_paths(zstd_mandir, 'man1')
man1_EXT = host_machine_os != os_windows ? '.1.gz' : ''
man1_EXT = host_machine_os != os_windows ? '.1.gz' : '.1'
foreach f : ['zstdcat', 'unzstd']
meson.add_install_script(InstallSymlink_py, 'zstd', f, zstd_bindir)