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

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

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