diff options
author | Pierre Labastie <pierre.labastie@neuf.fr> | 2023-03-23 22:24:06 +0100 |
---|---|---|
committer | Pierre Labastie <pierre.labastie@neuf.fr> | 2023-03-23 22:24:06 +0100 |
commit | 72711ab1cd6138ca05269c32a8c73ab2e25fa25d (patch) | |
tree | 39fd30713e18f40d994e3c05c39d31101ee8fc13 | |
parent | 4dfe8f99c42a2041657305493103a2e0da77b688 (diff) |
list_lfs.xsl: fixes for dependency checking
Add several packages that shouldn't be removed when doing dependency
checking, two of which are actually not in lfs, but needed for
script: porg tzdata sudo wget
-rw-r--r-- | BLFS/xsl/list_lfs.xsl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/BLFS/xsl/list_lfs.xsl b/BLFS/xsl/list_lfs.xsl index 87fe25395d..0ce91c6cf7 100644 --- a/BLFS/xsl/list_lfs.xsl +++ b/BLFS/xsl/list_lfs.xsl @@ -9,6 +9,11 @@ <xsl:text>bootscripts </xsl:text> <xsl:text>lfs-bootscripts </xsl:text> <xsl:text>kernel </xsl:text> + <xsl:text>porg </xsl:text> + <xsl:text>tzdata </xsl:text> + <!-- the next two packages are not in LFS, but jhalfs needs them --> + <xsl:text>sudo </xsl:text> + <xsl:text>wget </xsl:text> <xsl:apply-templates select=".//chapter[@id='chapter-building-system']/sect1/sect1info/productname"/> </xsl:template> |