Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit dea4343

Browse files
committed
Fix generation of distribution tarball
This issue can be reproduced by running `make dist` from the root of the tree. Error introduced in fcb21b3, where additions of links in installation.sgml require custom rules in standalone-profile.xsl to make sure that ./INSTALL is generated correctly for the distribution tarball, where links are replaced by equivalent terms from the profile file changed by this commit. Per buildfarm member guaibasaurus. Discussion: https://postgr.es/m/ZD859FmcMRCNtz0W@paquier.xyz
1 parent 3f58a4e commit dea4343

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

doc/src/sgml/standalone-profile.xsl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ variant without links and references to the main documentation.
4040
<xsl:text>the documentation about client authentication and libpq</xsl:text>
4141
</xsl:template>
4242

43+
<xsl:template match="xref[@linkend='collation']">
44+
<xsl:text>the documentation</xsl:text>
45+
</xsl:template>
46+
4347
<xsl:template match="xref[@linkend='docguide-toolsets']">
4448
<xsl:text>the main documentation's appendix on documentation</xsl:text>
4549
</xsl:template>
@@ -60,6 +64,10 @@ variant without links and references to the main documentation.
6064
<xsl:text>the documentation</xsl:text>
6165
</xsl:template>
6266

67+
<xsl:template match="xref[@linkend='locale-providers']">
68+
<xsl:text>the documentation</xsl:text>
69+
</xsl:template>
70+
6371
<xsl:template match="xref[@linkend='plpython-python23']">
6472
<xsl:text>the </xsl:text><application>PL/Python</application><xsl:text> documentation</xsl:text>
6573
</xsl:template>

0 commit comments

Comments
 (0)