Changeset 401f81e for HLFS/hlfs.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
  • HLFS/hlfs.xsl

    r5be3651 r401f81e  
    1818
    1919  <!-- Is the host kernel using grsecurity? -->
    20   <xsl:param name="grsecurity_host" select="0"/>
     20  <xsl:param name="grsecurity_host" select="n"/>
    2121
    2222  <!-- Compile the keymap into the kernel? -->
     
    3232
    3333  <!-- Bomb on test suites failures?
    34        0 = no, I want to build the full system and review the logs
    35        1 = yes, bomb at the first test suite failure to can review the build dir
     34       n = no, I want to build the full system and review the logs
     35       y = yes, bomb at the first test suite failure to can review the build dir
    3636  -->
    37   <xsl:param name="bomb-testsuite" select="0"/>
     37  <xsl:param name="bomb-testsuite" select="n"/>
    3838
    3939  <!-- Time zone -->
     
    144144                  ($testsuite = '2' or $testsuite = '3')">
    145145      <xsl:choose>
    146         <xsl:when test="$bomb-testsuite = '0'">
     146        <xsl:when test="$bomb-testsuite = 'n'">
    147147          <xsl:value-of select="substring-before(string(),'make')"/>
    148148          <xsl:text>make -k</xsl:text>
     
    181181      <xsl:when test="ancestor::sect1[@id='ch-system-kernfs'] and
    182182                contains(string(),'sysctl')
    183                 and $grsecurity_host ='0'"/>
     183                and $grsecurity_host ='n'"/>
    184184      <!-- Setting $LC_ALL and $LANG for /etc/profile -->
    185185      <xsl:when test="ancestor::sect1[@id='bootable-profile'] and
     
    231231            <xsl:if test="contains(string(),'check')">
    232232              <xsl:choose>
    233                 <xsl:when test="$bomb-testsuite = '0'">
     233                <xsl:when test="$bomb-testsuite = 'n'">
    234234                  <xsl:value-of select="substring-before(string(),'check')"/>
    235235                  <xsl:text>-k check</xsl:text>
     
    256256            <xsl:apply-templates/>
    257257            <xsl:choose>
    258               <xsl:when test="$bomb-testsuite = '0'">
     258              <xsl:when test="$bomb-testsuite = 'n'">
    259259                <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
    260260              </xsl:when>
     
    276276            <xsl:value-of select="substring-before(string(),'&gt; glibc-')"/>
    277277            <xsl:choose>
    278               <xsl:when test="$bomb-testsuite = '0'">
     278              <xsl:when test="$bomb-testsuite = 'n'">
    279279                <xsl:text> &gt;&gt; $TEST_LOG 2&gt;&amp;1 || true&#xA;</xsl:text>
    280280              </xsl:when>
Note: See TracChangeset for help on using the changeset viewer.