diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-05-10 14:34:07 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-05-10 14:34:07 +0900 |
commit | 45aa88fe1d4028ea50ba7d26d390223b6ef78acc (patch) | |
tree | 407cc25b6d1689040173a3c96ffd924e26a4bca5 /doc/src | |
parent | c2dc19342e05e081dc13b296787baa38352681ef (diff) | |
download | postgresql-45aa88fe1d4028ea50ba7d26d390223b6ef78acc.tar.gz postgresql-45aa88fe1d4028ea50ba7d26d390223b6ef78acc.zip |
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.
Diffstat (limited to 'doc/src')
-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 1817d1579ff..8bdf58632cd 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> |