diff options
author | Andres Freund | 2023-03-21 00:23:57 +0000 |
---|---|---|
committer | Andres Freund | 2023-03-21 00:23:57 +0000 |
commit | 7730ceb43fe5ecaa2b3cb26eb0ed8ad2e18c2d46 (patch) | |
tree | 43bf9c86780725cf0b518a42ec7c0cda7442eff8 | |
parent | 72a5b1fc880481914da2d4233077438dd87840ca (diff) |
meson: rename html_help target to htmlhelp
Reported-by: Peter Eisentraut <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | doc/src/sgml/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/meson.build b/doc/src/sgml/meson.build index 38f1b8e7b1..e6fe124c7b 100644 --- a/doc/src/sgml/meson.build +++ b/doc/src/sgml/meson.build @@ -123,7 +123,7 @@ if xsltproc_bin.found() # build multi-page html docs as part of docs target docs += html - html_help = custom_target('html_help', + htmlhelp = custom_target('htmlhelp', input: ['stylesheet-hh.xsl', postgres_full_xml], output: 'htmlhelp', depfile: 'htmlhelp.d', @@ -131,7 +131,7 @@ if xsltproc_bin.found() command: [xsltproc, '--path', '@OUTDIR@', '-o', '@OUTDIR@/', xsltproc_flags, '@INPUT@'], build_by_default: false, ) - alldocs += html_help + alldocs += htmlhelp # single-page HTML |