Ignore:
Timestamp:
11/13/2023 12:44:32 PM (10 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, trunk
Children:
645ec47
Parents:
74601a7 (diff), 5ed69f8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' into xry111/parallelism

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/xsl/process-replaceable.xsl

    r74601a7 r1352172  
    124124        <xsl:text>$USER</xsl:text>
    125125      </xsl:when>
     126<!-- for xorg environment. Note that libreoffice too uses &lt;PREFIX&gt; -->
     127      <xsl:when test="string()='&lt;PREFIX&gt;' and
     128                      ancestor::sect1[@id='xorg-env']">
     129        <xsl:text>/usr</xsl:text>
     130      </xsl:when>
     131<!-- for libreoffice. Note that xorg environment too uses &lt;PREFIX&gt; -->
     132      <xsl:when test="string()='&lt;PREFIX&gt;' and
     133                      ancestor::sect1[@id='libreoffice']">
     134                      <xsl:text>/opt/</xsl:text>
     135                      <xsl:value-of select="ancestor::sect1/@xreflabel"/>
     136      </xsl:when>
     137<!-- for abiword -->
     138      <xsl:when test="string()='&lt;lang&gt;'">
     139        <xsl:choose>
     140          <xsl:when test="starts-with($language,'en_US')">
     141            <!-- normal.awt for en_US is already there, copy
     142                 the one for en_GB (could be any other) -->
     143            <xsl:text>en_GB</xsl:text>
     144          </xsl:when>
     145          <xsl:otherwise>
     146            <!-- in general, there are normal.awt-ll_CC files-->
     147            <xsl:copy-of select="$lang-ll"/>
     148            <xsl:text>_</xsl:text>
     149            <xsl:copy-of select="$lang-CC"/>
     150          </xsl:otherwise>
     151        </xsl:choose>
     152      </xsl:when>
    126153      <xsl:otherwise>
    127154        <xsl:text>**EDITME</xsl:text>
Note: See TracChangeset for help on using the changeset viewer.