The Coreutils testsuite is optional.
This commit is contained in:
parent
a41ce586b1
commit
79f7cf901c
1 changed files with 6 additions and 1 deletions
|
@ -88,6 +88,10 @@
|
|||
|
||||
<xsl:template match="userinput" mode="screen">
|
||||
<xsl:choose>
|
||||
<xsl:when test="$testsuite = '0' and
|
||||
ancestor::sect1[@id='ch-system-coreutils'] and
|
||||
(contains(string(),'check') or
|
||||
contains(string(),'dummy'))"/>
|
||||
<xsl:when test="string() = 'make check'">
|
||||
<xsl:text>make -k check</xsl:text>
|
||||
</xsl:when>
|
||||
|
@ -106,7 +110,8 @@
|
|||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
<xsl:if test="not(contains(string(),'check')) and
|
||||
not(contains(string(),'strip '))">
|
||||
not(contains(string(),'strip ')) and
|
||||
not(contains(string(),'dummy'))">
|
||||
<xsl:text> &&</xsl:text>
|
||||
</xsl:if>
|
||||
<xsl:text>
</xsl:text>
|
||||
|
|
Reference in a new issue