diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-12-20 15:07:55 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-12-20 15:07:55 +0900 |
commit | 00498b718564cee3530b76d860b328718aed672b (patch) | |
tree | 9a829db9ea0058cb61d63ae8a561dc7a405371de | |
parent | 766571be16598b401b5527208847145edc6be1f4 (diff) | |
download | postgresql-00498b718564cee3530b76d860b328718aed672b.tar.gz postgresql-00498b718564cee3530b76d860b328718aed672b.zip |
Fix generation of distribution tarball
1301c80b2167 has introduced in installation.sgml a link reference that
`make dist` was not able to understand.
Per buildfarm member guaibasaurus.
-rw-r--r-- | doc/src/sgml/standalone-profile.xsl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/src/sgml/standalone-profile.xsl b/doc/src/sgml/standalone-profile.xsl index 82ff5c7ea15..a2d78bc10de 100644 --- a/doc/src/sgml/standalone-profile.xsl +++ b/doc/src/sgml/standalone-profile.xsl @@ -52,6 +52,10 @@ variant without links and references to the main documentation. <xsl:text>the documentation</xsl:text> </xsl:template> +<xsl:template match="xref[@linkend='install-meson']"> + <xsl:text>the documentation</xsl:text> +</xsl:template> + <xsl:template match="xref[@linkend='guc-default-toast-compression']"> <xsl:text>the configuration parameter default_toast_compression</xsl:text> </xsl:template> |