Changeset 1f89002 for HLFS/hlfs.xsl


Ignore:
Timestamp:
03/17/2006 08:53:55 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
28fd555
Parents:
ca0ac30
Message:

Fixed Binutils and GCC chapter06 testsuites.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • HLFS/hlfs.xsl

    rca0ac30 r1f89002  
    123123            ancestor::chapter[@id='chapter-building-system']) or
    124124            $testsuite = '3')">
    125       <xsl:value-of select="substring-before(string(),'make')"/>
    126       <xsl:text>make -k</xsl:text>
    127       <xsl:value-of select="substring-after(string(),'make')"/>
    128       <xsl:text> || true&#xA;</xsl:text>
     125      <xsl:choose>
     126        <xsl:when test="ancestor::sect1[@id='ch-system-gcc']">
     127          <xsl:text>make -k check || true&#xA;</xsl:text>
     128        </xsl:when>
     129        <xsl:otherwise>
     130          <xsl:value-of select="substring-before(string(),'make')"/>
     131          <xsl:text>make -k</xsl:text>
     132          <xsl:value-of select="substring-after(string(),'make')"/>
     133          <xsl:text> || true&#xA;</xsl:text>
     134        </xsl:otherwise>
     135      </xsl:choose>
    129136    </xsl:if>
    130137  </xsl:template>
     
    188195        </xsl:choose>
    189196      </xsl:when>
     197      <xsl:when test="contains(string(),'hardened-specs') and
     198                ancestor::sect1[@id='ch-system-binutils']
     199                and $testsuite = '0'"/>
    190200      <!-- Don't stop on strip run -->
    191201      <xsl:when test="contains(string(),'strip ')">
Note: See TracChangeset for help on using the changeset viewer.