diff options
author | Michael Paquier | 2021-05-10 05:34:07 +0000 |
---|---|---|
committer | Michael Paquier | 2021-05-10 05:34:07 +0000 |
commit | 45aa88fe1d4028ea50ba7d26d390223b6ef78acc (patch) | |
tree | 407cc25b6d1689040173a3c96ffd924e26a4bca5 | |
parent | c2dc19342e05e081dc13b296787baa38352681ef (diff) |
Fix generation of ./INSTALL for the distribution tarball
"make dist", in charge of creating a distribution tarball, failed when
attempting to generate ./INSTALL as a new reference added to
guc-default-toast-compression on the documentation for the installation
details was not getting translated properly to plain text. Like all the
other link references on this page, this adds a new entry to
standalone-profile.xsl to allow the generation of ./INSTALL to finish
properly.
Oversight in 02a93e7, 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 1817d1579f..8bdf58632c 100644 --- a/doc/src/sgml/standalone-profile.xsl +++ b/doc/src/sgml/standalone-profile.xsl @@ -48,6 +48,10 @@ variant without links and references to the main documentation. <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> + <xsl:template match="xref[@linkend='install-windows']"> <xsl:text>the documentation</xsl:text> </xsl:template> |