/
githubmirror
/
bzip2
Обзор
Документация
Войти
/
githubmirror
/
bzip2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
man/meson.build
19 строк
556 B
Federico Mena Quintero
man/meson.build: Add newline to the end of the file
20 июн 2019, 04:49
20 июн 2019, 04:49
c61d28b
Код
Авторство
О чём код?
install_man('bzip2.1', 'bzgrep.1', 'bzdiff.1', 'bzmore.1') # Install copies of some of the man files man1dir = join_paths(get_option('prefix'), get_option('mandir'), 'man1') foreach m : [['bzip2.1', ['bunzip2.1', 'bzcat']], ['bzgrep.1', ['bzegrep.1', 'bzfgrep.1']], ['bzmore.1', ['bzless.1']], ['bzdiff.1', ['bzcmp.1']]] _input = m[0] foreach o : m[1] configure_file( input : _input, output : o, copy : true, install : true, install_dir : man1dir, ) endforeach endforeach