Changeset cfdb089 for LFS


Ignore:
Timestamp:
05/11/2021 07:59:19 AM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
0722dde
Parents:
894eec3
Message:

Fix generation of full locales

The recent addition of instructions for adding locales not
installed by make install-localedata has broken the generation
of the scriptlet, because there is a missing linefeed.
Use xsl:for-each to add a linefeed after each <userinput>
text.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LFS/lfs.xsl

    r894eec3 rcfdb089  
    335335      <xsl:choose>
    336336        <xsl:when test="$full-locale='y'">
    337           <xsl:copy-of select="//userinput[@remap='locale-full']"/>
    338           <xsl:text>&#xA;</xsl:text>
     337          <xsl:for-each select="//userinput[@remap='locale-full']">
     338            <xsl:copy-of select="."/>
     339            <xsl:text>&#xA;</xsl:text>
     340          </xsl:for-each>
    339341        </xsl:when>
    340342        <xsl:otherwise>
Note: See TracChangeset for help on using the changeset viewer.