diff options
author | Andres Freund | 2023-04-05 04:10:46 +0000 |
---|---|---|
committer | Andres Freund | 2023-04-05 04:29:45 +0000 |
commit | b8059bdf1ef8f7e215ec5010fcf6c3bd9c491eef (patch) | |
tree | 7f13febde6ad0d4fa3b56222e76c8cf98412d373 /doc/src/sgml/meson.build | |
parent | 0012979d989fd1640ed17c32b303ebbd2294a3fc (diff) |
docs: html: load stylesheet via custom.css.source
Until now the meson built docs did not have a working reference to the css
stylesheet, it was copied in the make target. Instead of duplicating that for
meson, use the docbook-xsl parameter custom.css.source to reference it. An
additional benefit of that approach is that the stylesheet is now included in
the single-file HTML documentation.
Reported-by: Peter Eisentraut <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Diffstat (limited to 'doc/src/sgml/meson.build')
-rw-r--r-- | doc/src/sgml/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/meson.build b/doc/src/sgml/meson.build index f293eca612a..539865da8d9 100644 --- a/doc/src/sgml/meson.build +++ b/doc/src/sgml/meson.build @@ -96,7 +96,7 @@ if xsltproc_bin.found() xsltproc_flags = [ '--nonet', '--stringparam', 'pg.version', pg_version, - '--path', '@OUTDIR@', + '--path', '@OUTDIR@', '--path', '@CURRENT_SOURCE_DIR@', ] xsltproc = xmltools_wrapper + [ |