Changeset 433a5d4 for CLFS


Ignore:
Timestamp:
10/06/2013 08:59:23 AM (11 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
2.4, ablfs-more, legacy, new_features, trunk
Children:
2e64c47
Parents:
3cb4ef5b
Message:

Add -j1 to "make install" in CLFS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • CLFS/clfs.xsl

    r3cb4ef5b r433a5d4  
    271271        <xsl:text> || true&#xA;</xsl:text>
    272272      </xsl:when>
     273      <!-- Add -j1 to make install commands -->
     274      <xsl:when test="contains(string(),'make ') and
     275                      contains(string(),'install')">
     276        <xsl:value-of select="substring-before(string(),'make ')"/>
     277        <xsl:text>make -j1 </xsl:text>
     278        <xsl:value-of select="substring-after(string(),'make ')"/>
     279        <xsl:text>&#xA;</xsl:text>
     280      </xsl:when>
    273281      <!-- The rest of commands -->
    274282      <xsl:otherwise>
Note: See TracChangeset for help on using the changeset viewer.