From 00498b718564cee3530b76d860b328718aed672b Mon Sep 17 00:00:00 2001 From: Michael Paquier <michael@paquier.xyz> Date: Wed, 20 Dec 2023 15:07:55 +0900 Subject: [PATCH] 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. --- doc/src/sgml/standalone-profile.xsl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/src/sgml/standalone-profile.xsl b/doc/src/sgml/standalone-profile.xsl index 82ff5c7ea1..a2d78bc10d 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>