Fixes for BLFS porg:
- add a special case for cacerts in packInstall.sh, so that a dummy version is generated, otherwise porgball does not work as intended - do not quote out apostrophes in scripts, when generating configuration instructions
This commit is contained in:
parent
7bbcce3ce7
commit
24e2a6f2f8
2 changed files with 4 additions and 1 deletions
|
@ -537,7 +537,8 @@ popd</xsl:text>
|
|||
</xsl:call-template>
|
||||
</xsl:when>
|
||||
<xsl:when test="contains($out-string,string($APOS))
|
||||
and $wrap-install = 'y'">
|
||||
and $wrap-install = 'y'
|
||||
and ancestor::sect2[@role='installation']">
|
||||
<xsl:call-template name="output-root">
|
||||
<xsl:with-param name="out-string"
|
||||
select="substring-before($out-string,string($APOS))"/>
|
||||
|
|
|
@ -23,6 +23,7 @@ case $PCKGVRS in
|
|||
vim*|unzip*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*\([0-9]\)\([0-9]\)/\1.\2/') ;;
|
||||
tidy*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*\([0-9]*\)/\1cvs/') ;;
|
||||
docbook-xml) local VERSION=4.5 ;;
|
||||
cacerts*) local VERSION=0.1 ;;
|
||||
*) local VERSION=$(echo ${PCKGVRS} | sed 's/^.*[-_]\([0-9]\)/\1/' |
|
||||
sed 's/_/./g');;
|
||||
# the last sed above is because some package managers do not want a '_'
|
||||
|
@ -50,6 +51,7 @@ case $PCKGVRS in
|
|||
vim*|unzip*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*\([0-9]\)\([0-9]\)/\1.\2/') ;;
|
||||
tidy*) local VERSION=$(echo $PCKGVRS | sed 's/^[^0-9]*\([0-9]*\)/\1cvs/') ;;
|
||||
docbook-xml) local VERSION=4.5 ;;
|
||||
cacerts*) local VERSION=0.1 ;;
|
||||
*) local VERSION=$(echo ${PCKGVRS} | sed 's/^.*[-_]\([0-9]\)/\1/' |
|
||||
sed 's/_/./g');;
|
||||
# the last sed above is because some package managers do not want a '_'
|
||||
|
|
Reference in a new issue