Changeset 1daca67 for chapter06


Ignore:
Timestamp:
03/31/2021 10:41:36 AM (3 years ago)
Author:
Xℹ Ruoyao <xry111@…>
Branches:
ml-11.0, multilib
Children:
d7f58cc
Parents:
bc375da6
git-author:
Thomas Trepl <thomas@…> (09/01/2019 06:37:36 PM)
git-committer:
Xℹ Ruoyao <xry111@…> (03/31/2021 10:41:36 AM)
Message:

MultiLib: Merge changes from trunk

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11664 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter06
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter06/creatingdirs.xml

    rbc375da6 r1daca67  
    7373    <para>The directory tree is based on the Filesystem Hierarchy Standard
    7474    (FHS) (available at <ulink
    75     url="https://wiki.linuxfoundation.org/en/FHS"/>).  The FHS also specifies
     75    url="https://refspecs.linuxfoundation.org/fhs.shtml"/>).  The FHS also specifies
    7676    the optional existence of some directories such as <filename
    7777    class="directory">/usr/local/games</filename> and <filename
  • chapter06/gcc.xml

    rbc375da6 r1daca67  
    153153
    154154    <para>Six tests related to get_time are known to fail.  These are
    155     apparantly related to the en_HK locale.</para>
     155    apparently related to the en_HK locale.</para>
    156156
    157157    <para>Two tests named lookup.cc and reverse.cc in experimental/net
     
    178178
    179179<screen><userinput remap="install">make install
    180 rm -rf /usr/lib/gcc/x86_64-pc-linux-gnu/9.1.0/include-fixed/bits/</userinput></screen>
     180rm -rf /usr/lib/gcc/$(gcc -dumpmachine)/&gcc-version;/include-fixed/bits/</userinput></screen>
     181
     182    <para>The GCC build directory is owned by <systemitem class="username">
     183    nobody</systemitem> now and the ownership of the installed header
     184    directory (and its content) will be incorrect.  Change the ownership to
     185    <systemitem class="username">root</systemitem> user and group:</para>
     186
     187<screen><userinput remap="install">chown -v -R root:root \
     188    /usr/lib/gcc/*linux-gnu/&gcc-version;/include{,-fixed}</userinput></screen>
    181189
    182190    <para>Create a symlink required by the <ulink
  • chapter06/glibc.xml

    rbc375da6 r1daca67  
    438438    running:</para>
    439439
    440 <screen revision="sysv"><userinput>cp -v /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
    441 
    442 <screen revision="systemd"><userinput>ln -sfv /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
     440<screen><userinput>ln -sfv /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
    443441
    444442    <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the
Note: See TracChangeset for help on using the changeset viewer.