[BLFS] Ticket #1730: compute the full dependency chain
Comment out the version comparison in BLFS/xsl/dependencies.xsl. It is a mess in xslt anyway...
This commit is contained in:
parent
794f94f85e
commit
5132b9373d
1 changed files with 7 additions and 1 deletions
|
@ -37,10 +37,11 @@
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:variable>
|
</xsl:variable>
|
||||||
|
<!--
|
||||||
<xsl:variable name="install_it">
|
<xsl:variable name="install_it">
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="@type='link'">
|
<xsl:when test="@type='link'">
|
||||||
<!-- No way to track versions: install ! -->
|
<!- - No way to track versions: install ! - ->
|
||||||
1
|
1
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
<xsl:otherwise>
|
<xsl:otherwise>
|
||||||
|
@ -51,8 +52,11 @@
|
||||||
</xsl:otherwise>
|
</xsl:otherwise>
|
||||||
</xsl:choose>
|
</xsl:choose>
|
||||||
</xsl:variable>
|
</xsl:variable>
|
||||||
|
-->
|
||||||
<xsl:apply-templates select="dependency"/>
|
<xsl:apply-templates select="dependency"/>
|
||||||
|
<!--
|
||||||
<xsl:if test="number($install_it)">
|
<xsl:if test="number($install_it)">
|
||||||
|
-->
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<xsl:when test="@type='link'">
|
<xsl:when test="@type='link'">
|
||||||
<xsl:text>4</xsl:text>
|
<xsl:text>4</xsl:text>
|
||||||
|
@ -82,7 +86,9 @@
|
||||||
<xsl:text> </xsl:text>
|
<xsl:text> </xsl:text>
|
||||||
<xsl:value-of select="$depname"/>
|
<xsl:value-of select="$depname"/>
|
||||||
<xsl:text>
</xsl:text>
|
<xsl:text>
</xsl:text>
|
||||||
|
<!--
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
|
-->
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
<!-- lexicographic Comparison of strings. There is no way to directly
|
<!-- lexicographic Comparison of strings. There is no way to directly
|
||||||
|
|
Reference in a new issue