Changeset 1179ee9


Ignore:
Timestamp:
05/21/2003 06:43:13 PM (21 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
9503a7d
Parents:
6198a8c
Message:

Applied Zack's glibc patch

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2622 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r6198a8c r1179ee9  
    7979</para></listitem>
    8080
     81<listitem><para>May 15th, 2003 [winkie]: Chapter 05 - Installing
     82Glibc: Create an ld.so.conf file before building Glibc, to prevent an
     83(harmless) error.</para></listitem>
     84
     85<listitem><para>May 15th, 2003 [winkie]: Chapter 06 - Installing Glibc:
     86Don't bother doing the 'exec /stage1/bin/bash' stuff, it doesn't do anything
     87now that we use PLFS.</para></listitem>
     88
    8189<listitem><para>May 21st, 2003 [winkie]: Chapter 05 &amp; 06 - Installing
    8290Coreutils: Only test the non-root stuff in Chapter 05, but test everything
  • chapter05/glibc-inst.xml

    r6198a8c r1179ee9  
    1717<para>Basically, compiling Glibc in any other way than the book suggests
    1818is putting your system at a very high risk.</para>
     19
     20<para>Though it is a harmless message, the install stage of Glibc will
     21complain about the presence of /etc/ld.so.conf (or lack thereof). Fix
     22this annoying little error:</para>
     23
     24<para><screen><userinput>mkdir /stage1/etc
     25touch /stage1/etc/ld.so.conf</userinput></screen></para>
    1926
    2027<para>The documentation that comes with Glibc recommends to build the package
  • chapter06/glibc-inst.xml

    r6198a8c r1179ee9  
    1414<para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
    1515&nbsp;&nbsp;&nbsp;&nbsp;--disable-profile --enable-add-ons \
    16 &nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin \
    17 &nbsp;&nbsp;&nbsp;&nbsp;--with-headers=/usr/include</userinput></screen></para>
     16&nbsp;&nbsp;&nbsp;&nbsp;--libexecdir=/usr/bin --with-headers=/usr/include</userinput></screen></para>
    1817
    1918<para>The meaning of the configure options are:</para>
     
    3130<filename>/usr/bin</filename> directory.</para></listitem>
    3231</itemizedlist>
    33 
    34 <para>During this stage you will see the following warning:</para>
    35 
    36 <blockquote><screen>configure: warning:
    37 *** These auxiliary programs are missing or too old: msgfmt
    38 *** some features will be disabled.
    39 *** Check the INSTALL file for required versions.</screen></blockquote>
    40 
    41 <para>The missing <filename>msgfmt</filename> program (from the Gettext
    42 package, which we'll install later) won't cause any problems. The
    43 <filename>msgfmt</filename> is used to generate the binary translation
    44 files that can make your system talk in a different language. Because these
    45 translation files have already been generated for you, there is no need for
    46 <filename>msgfmt</filename>. You'd only need the program if you change the
    47 translation source files (the <filename>*.po</filename> files in the
    48 <filename class="directory">po</filename> subdirectory), which
    49 would require you to regenerate the binary files.</para>
    5032
    5133<para>Continue with compiling the package:</para>
     
    8264<para><screen><userinput>make -C ../glibc-2.3.2/linuxthreads/man install</userinput></screen></para>
    8365
    84 <para>To finish off the installation we'll reload Bash so it will use the new
    85 <filename>libnss_*</filename> files. This will also get rid of the
    86 <emphasis>I have no name!</emphasis> message in the command prompt:</para>
    87 
    88 <para><screen><userinput>exec /stage1/bin/bash --login
    89 set +h</userinput></screen></para>
    90 
    9166</sect2>
    9267
Note: See TracChangeset for help on using the changeset viewer.