Changeset 32f47b1


Ignore:
Timestamp:
05/18/2021 06:17:35 AM (3 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
ml-11.0, multilib
Children:
70aadfb
Parents:
f34f267 (diff), 7ffe1b8 (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' into multilib

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rf34f267 r32f47b1  
    4646    -->
    4747    <listitem>
     48      <para>2021-05-17</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[bdubbs] - Tweak install directories for eudev and e2fsprogs.
     52          Thanks to Ryan Marsaw for the report.</para>
     53        </listitem>
     54      </itemizedlist>
     55    </listitem>
     56
     57    <listitem>
    4858      <para>2021-05-14</para>
    4959      <itemizedlist>
  • chapter06/findutils.xml

    rf34f267 r32f47b1  
    4646    <para>Prepare Findutils for compilation:</para>
    4747
    48 <screen><userinput remap="configure">./configure --prefix=/usr   \
    49             --host=$LFS_TGT \
     48<screen><userinput remap="configure">./configure --prefix=/usr                   \
     49            --localstatedir=/var/lib/locate \
     50            --host=$LFS_TGT                 \
    5051            --build=$(build-aux/config.guess)</userinput></screen>
    5152
  • chapter07/createfiles.xml

    rf34f267 r32f47b1  
    8484systemd-coredump:x:79:79:systemd Core Dumper:/:/bin/false
    8585uuidd:x:80:80:UUID Generation Daemon User:/dev/null:/bin/false
    86 systemd-oomd:x:81:81:systemd Out Of Memory Daemon:/:/bin/false
     86systemd-oom:x:81:81:systemd Out Of Memory Daemon:/:/bin/false
    8787nobody:x:99:99:Unprivileged User:/dev/null:/bin/false</literal>
    8888EOF</userinput></screen>
     
    154154systemd-coredump:x:79:
    155155uuidd:x:80:
    156 systemd-oomd:x:81:81:
     156systemd-oom:x:81:81:
    157157wheel:x:97:
    158158nogroup:x:99:
  • chapter08/bzip2.xml

    rf34f267 r32f47b1  
    9090
    9191    <para>Install the shared <command>bzip2</command> binary into the
    92     <filename class="directory">/usr/bin</filename> directory:</para>
    93 
    94 <screen><userinput remap="install">cp -v bzip2-shared /usr/bin/bzip2</userinput></screen>
     92    <filename class="directory">/usr/bin</filename> directory, and replace
     93    two copies of <command>bzip2</command> with symlinks:</para>
     94
     95<screen><userinput remap="install">cp -v bzip2-shared /usr/bin/bzip2
     96for i in /usr/bin/{bzcat,bunzip2}; do
     97  ln -sfv bzip2 $i
     98done</userinput></screen>
    9599
    96100    <para>Remove an useless static library:</para>
  • chapter08/e2fsprogs.xml

    rf34f267 r32f47b1  
    5454
    5555<screen><userinput remap="configure">../configure --prefix=/usr           \
     56             --sysconfdir=/etc       \
    5657             --enable-elf-shlibs     \
    5758             --disable-libblkid      \
  • chapter08/eudev.xml

    rf34f267 r32f47b1  
    5454
    5555<screen><userinput remap="configure">./configure --prefix=/usr           \
     56            --bindir=/usr/sbin      \
    5657            --sysconfdir=/etc       \
    5758            --enable-manpages       \
Note: See TracChangeset for help on using the changeset viewer.