Who knew make would not like embedded control codes in its strings. For now tab_ works but nl_ doesn't
This commit is contained in:
parent
91bac7ff07
commit
fc6076c7d5
2 changed files with 4 additions and 4 deletions
|
@ -91,10 +91,10 @@
|
||||||
<xsl:text>#!/tools/bin/bash
set -e

</xsl:text>
|
<xsl:text>#!/tools/bin/bash
set -e

</xsl:text>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:when test="@id='ch-system-stripping'">
|
<xsl:when test="@id='ch-system-stripping'">
|
||||||
<xsl:text>#!/bin/sh
</xsl:text>
|
<xsl:text>#!/bin/bash
</xsl:text>
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
<xsl:text>#!/bin/sh
set -e

</xsl:text>
|
<xsl:text>#!/bin/bash
set -e

</xsl:text>
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
<xsl:if test="sect2[@role='installation']">
|
<xsl:if test="sect2[@role='installation']">
|
||||||
|
|
|
@ -13,8 +13,8 @@ OFF = "[0m"
|
||||||
BOLD = "[1m"
|
BOLD = "[1m"
|
||||||
REVERSE = "[7m"
|
REVERSE = "[7m"
|
||||||
|
|
||||||
tab_ ='\t'
|
tab_ = " "
|
||||||
nl_ ='\n'
|
nl_ = ""
|
||||||
|
|
||||||
define echo_PHASE
|
define echo_PHASE
|
||||||
@clear
|
@clear
|
||||||
|
|
Reference in a new issue