Changeset 794f94f for BLFS/xsl


Ignore:
Timestamp:
12/11/2021 06:50:56 AM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
ablfs-more, legacy, trunk
Children:
5132b93
Parents:
eec87db
Message:

BLFS ordered book gen: fix for .xz Xorg packages

In Xorg pages where there are several packages, the .xsl for
separating packages assumed that the package names ended in
tar.bz2 and selected the substring before ".tar.bz2" to extract
the packagedir. This has changed recently for libX11, which is a
.tar.xz package: the fix is to just select the substring before
".tar." for the packagedir.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BLFS/xsl/make_book.xsl

    reec87db r794f94f  
    581581
    582582        <screen><userinput>packagedir=<xsl:value-of
    583                     select="substring-before($tarball,'.tar.bz2')"/>
     583                    select="substring-before($tarball,'.tar.')"/>
    584584          <xsl:text>&#xA;</xsl:text>
    585585          <xsl:value-of select="substring-before($install-instructions,
Note: See TracChangeset for help on using the changeset viewer.