This is an automated email from the git hooks/post-receive script. git pushed a commit to branch trunk in repository jhalfs.
commit c2af9cd73f1ae0e2e614a22ff87e2f412ca489ca Author: Pierre Labastie <[email protected]> AuthorDate: Tue Mar 9 21:53:29 2021 +0100 Fix gen-special when an entity is commented out: In the xorg application, mkfontdir is commented out, but we did not check that because it was complicated with the shell. This was leading to mkfontfir appearing in the packages to install, which is not wanted. We use the information in the "cat" command to eliminate the commented out package. --- BLFS/gen-special.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BLFS/gen-special.sh b/BLFS/gen-special.sh index d5e4e0d..2cf2e21 100755 --- a/BLFS/gen-special.sh +++ b/BLFS/gen-special.sh @@ -133,7 +133,11 @@ EOF if [ "$i" = "$packname" ]; then break; fi precpack=$i done - +# It may happen that packname is not in list_cat, because its entity +# is commented out in the xml, but we do not check that (too complicated). +# In that case, the whole list is scanned, and $precpack=$i at the end. +# when packname is found in the list $precpack!=$i. + if [ "$precpack" = "$i" ]; then continue; fi cat >>$SPECIAL_FILE << EOF <module><xsl:text>
 </xsl:text> <xsl:element name="name">$packname</xsl:element> -- To stop receiving notification emails like this one, please contact the administrator of this repository. -- http://lists.linuxfromscratch.org/listinfo/alfs-log Unsubscribe: See the above information page
