Changeset 89c61e5


Ignore:
Timestamp:
01/04/2024 11:30:09 PM (5 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib
Children:
5605ef38
Parents:
6c474a7 (diff), 164e0dd (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:

Automatic merge of trunk into multilib

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter05/binutils-pass1.xml

    r6c474a7 r89c61e5  
    151151          linker (provided by the Glibc package) will always use the
    152152          GNU-style hash table which is faster to query.  So the classic
    153           ELF hash table is completely useless.  This makes the the linker
     153          ELF hash table is completely useless.  This makes the linker
    154154          only generate the GNU-style hash table by default, so we can avoid
    155155          wasting time to generate the classic ELF hash table when we build
  • chapter08/udev.xml

    r6c474a7 r89c61e5  
    127127
    128128    <para>Get the list of the shipped udev helpers and save it into an
    129     environment variable:</para>
    130 
    131     <screen><userinput remap="make">udev_helpers=$(grep "'name' :" ../src/udev/meson.build | \
     129    environment variable (exporting it is not strictly necessary, but it makes
     130    building as a regular user or using a package manager easier):</para>
     131
     132    <screen><userinput remap="make">export udev_helpers=$(grep "'name' :" ../src/udev/meson.build | \
    132133               awk '{print $3}' | tr -d ",'" | grep -v 'udevadm')</userinput></screen>
    133134
     
    187188rm /usr/share/man/man*/systemd*</userinput></screen>
    188189
     190    <para>Finally, unset the <envar>udev_helpers</envar> variable:</para>
     191
     192    <!-- remap="make" seems confusing but we don't have sth. like
     193         remap="clean".  -->
     194    <screen><userinput remap="make">unset udev_helpers</userinput></screen>
     195
    189196  </sect2>
    190197
Note: See TracChangeset for help on using the changeset viewer.