/
githubmirror
/
bzip2
Обзор
Документация
Войти
/
githubmirror
/
bzip2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/meson.build
17 строк
719 B
Ville Skyttä
bzgrep, build: use `grep -E/-F` instead of `egrep` and `fgrep`
06 фев 2022, 21:31
06 фев 2022, 21:31
1ea1ac1
Код
Авторство
О чём код?
build_docs = get_option('docs') docs = find_program('xsltproc', required : build_docs).found() docs = docs and find_program('perl', required : build_docs).found() docs = docs and find_program('xmllint', required : build_docs).found() docs = docs and find_program('grep', required : build_docs).found() docs = docs and find_program('pdfxmltex', required : build_docs).found() docs = docs and find_program('pdftops', required : build_docs).found() prog_sh = find_program('sh', required : build_docs) if docs and prog_sh.found() foreach t : ['pdf', 'ps', 'html'] custom_target( 'manual.' + t, command : [prog_sh, 'xmlproc.sh', '-' + t, '@OUTPUT@'], output : 'manual.' + t, ) endforeach endif