Changeset 539f011


Ignore:
Timestamp:
08/08/2023 09:07:30 PM (10 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.0, 12.0-rc1, 12.1, 12.1-rc1, multilib, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/update-glibc
Children:
45708d8, 91f9a17, da584239, f7d3b6e
Parents:
45f40e8 (diff), 9cca53d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunk

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r45f40e8 r539f011  
    6464        </listitem>
    6565        <listitem>
    66           <para>[rahul] - Update to pkgconf 2.0.0. Fixes
     66          <para>[rahul] - Update to pkgconf-2.0.0. Fixes
    6767          <ulink url='&lfs-ticket-root;5310'>#5310</ulink>.</para>
    6868        </listitem>
     
    254254        </listitem>
    255255        <listitem>
    256           <para>[rahul] - Changed from pkg-config to pkgconf 1.9.5.  Fixes
     256          <para>[rahul] - Changed from pkg-config to pkgconf-1.9.5.  Fixes
    257257          <ulink url='&lfs-ticket-root;5274'>#5274</ulink>.</para>
    258258        </listitem>
  • chapter01/whatsnew.xml

    r45f40e8 r539f011  
    227227      <para>Patch-&patch-version;</para>
    228228    </listitem>-->
    229     <listitem>
    230       <para>pkgconf-&pkgconf-version;</para>
    231     </listitem>
     229    <!--<listitem>
     230      <para>Pkgconf-&pkgconf-version;</para>
     231    </listitem>-->
    232232    <listitem>
    233233      <para>Perl-&perl-version;</para>
  • chapter08/pkgconf.xml

    r45f40e8 r539f011  
    4545    <title>Installation of Pkgconf</title>
    4646
    47     <para>Pkgconf 2.0.0 explicitly errors when attempting to run
    48            --modversion with multiple packages. This breaks many
    49            packages in BLFS. Run this sed to reinstate the old
    50            output for pkgconf.</para>
     47    <para>Pkgconf-2.0.0 explicitly errors when attempting to run
     48    <option>--modversion</option> with multiple arguments, even if these
     49    arguments are constraints for the same package.  This breaks many
     50    packages in BLFS. Run this sed to reinstate the old
     51    output for pkgconf:</para>
    5152
    5253     <screen><userinput remap="pre">sed -i '1330,1336s|^|//|' cli/main.c</userinput></screen>
  • chapter10/kernel/Makefile

    r45f40e8 r539f011  
    99
    1010kernel.version: s-kernel-version; @true
    11 s-kernel-version: Makefile kernel_version.py
     11
     12.PHONY: s-kernel-version
     13s-kernel-version:
    1214        ./kernel_version.py $(KERNEL_TREE) > tmp-kernel.version
    13         if ! diff tmp-kernel.version $@ 2>/dev/null >/dev/null; then \
     15        if ! diff tmp-kernel.version kernel.version ; then          \
    1416                mv tmp-kernel.version kernel.version;                    \
     17        else                                                         \
     18                rm tmp-kernel.version;                                   \
    1519        fi
    1620        touch s-kernel-version
  • chapter10/kernel/kernel.version

    r45f40e8 r539f011  
    1 6.4.7
     16.4.8
Note: See TracChangeset for help on using the changeset viewer.