Changeset 401f81e for LFS/lfs.xsl


Ignore:
Timestamp:
08/16/2006 05:42:54 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
2.3, 2.3.x, 2.4, ablfs, ablfs-more, legacy, new_features, trunk
Children:
fdb330a
Parents:
5be3651
Message:

Ported Makefile clean-up and 0/1 to n/y migration code from experimental.
There is no obvious bugs, let users to find hidden bugs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LFS/lfs.xsl

    r5be3651 r401f81e  
    2323
    2424  <!-- Bomb on test suites failures?
    25        0 = no, I want to build the full system and review the logs
    26        1 = yes, bomb at the first test suite failure to can review the build dir
     25       n = no, I want to build the full system and review the logs
     26       y = yes, bomb at the first test suite failure to can review the build dir
    2727  -->
    28   <xsl:param name="bomb-testsuite" select="0"/>
     28  <xsl:param name="bomb-testsuite" select="n"/>
    2929
    3030  <!-- Install vim-lang package? -->
    31   <xsl:param name="vim-lang" select="1"/>
     31  <xsl:param name="vim-lang" select="y"/>
    3232
    3333  <!-- Time zone -->
     
    9191        <xsl:if test="sect2[@role='installation']">
    9292          <xsl:text>cd $PKGDIR&#xA;</xsl:text>
    93           <xsl:if test="@id='ch-system-vim' and $vim-lang = '1'">
     93          <xsl:if test="@id='ch-system-vim' and $vim-lang = 'y'">
    9494            <xsl:text>tar -xvf ../vim-&vim-version;-lang.* --strip-components=1&#xA;</xsl:text>
    9595          </xsl:if>
     
    118118            $testsuite = '3')">
    119119      <xsl:choose>
    120         <xsl:when test="$bomb-testsuite = '0'">
     120        <xsl:when test="$bomb-testsuite = 'n'">
    121121          <xsl:value-of select="substring-before(string(),'make')"/>
    122122          <xsl:text>make -k</xsl:text>
     
    186186            <xsl:if test="contains(string(),'check')">
    187187              <xsl:choose>
    188                 <xsl:when test="$bomb-testsuite = '0'">
     188                <xsl:when test="$bomb-testsuite = 'n'">
    189189                  <xsl:value-of select="substring-before(string(),'check')"/>
    190190                  <xsl:text>-k check</xsl:text>
     
    213213                    $testsuite = '3'">
    214214            <xsl:choose>
    215               <xsl:when test="$bomb-testsuite = '0'">
     215              <xsl:when test="$bomb-testsuite = 'n'">
    216216                <xsl:text>make -k check &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
    217217              </xsl:when>
Note: See TracChangeset for help on using the changeset viewer.