'make olconfig' is'n needed if the .config file is the proper one.

This commit is contained in:
Manuel Canales Esparcia 2006-03-23 18:17:47 +00:00
parent bc54cbe97f
commit 9a4f673644
2 changed files with 4 additions and 4 deletions

View file

@ -162,6 +162,8 @@
<xsl:text>cp -v ../kernel-config .config&#xA;</xsl:text>
</xsl:if>
</xsl:when>
<!-- No interactive commands are needed if the .config file is the proper one -->
<xsl:when test="contains(string(),'menuconfig')"/>
<!-- The Coreutils and Module-Init-Tools test suites are optional -->
<xsl:when test="($testsuite = '0' or $testsuite = '1') and
(ancestor::sect1[@id='ch-system-coreutils'] or

View file

@ -202,10 +202,8 @@
<xsl:text>make mrproper&#xA;</xsl:text>
<xsl:text>cp -v /sources/kernel-config .config&#xA;</xsl:text>
</xsl:when>
<!-- No interactive commands are allowed -->
<xsl:when test="string() = 'make menuconfig'">
<xsl:text>make oldconfig&#xA;</xsl:text>
</xsl:when>
<!-- No interactive commands are needed if the .config file is the proper one -->
<xsl:when test="string() = 'make menuconfig'"/>
<!-- For uClibc we need to cd to the Gettext package -->
<xsl:when test="contains(string(),'cd gettext-runtime/')">
<xsl:text>cd ../gettext-*/gettext-runtime</xsl:text>