Ticket #2442: lfs-text-updates.patch
File lfs-text-updates.patch, 5.8 KB (added by , 15 years ago) |
---|
-
trunk/BOOK/chapter01/how.xml
20 20 21 21 <para>As an alternative to installing a separate distribution onto your 22 22 machine, you may wish to use the Linux From Scratch LiveCD or a LiveCD from a 23 commercial distribution. 23 commercial distribution. The LFS LiveCD works well as a host system, 24 24 providing all the tools you need to successfully follow the instructions in 25 25 this book. Unfortunately, development of the LiveCD has not progressed 26 26 recently and it only contains older versions of the source packages and -
trunk/BOOK/chapter04/abouttestsuites.xml
41 41 number of failing tests. This may happen for several reasons, but the 42 42 most likely cause is that the host system does not have the 43 43 <systemitem class="filesystem">devpts</systemitem> file system set up 44 correctly. This issue is discussed in greater detail in <xref45 linkend="chapter-temporary-tools"/>.</para>44 correctly. This issue is discussed in greater detail at 45 <ulink url="&lfs-root;/lfs/faq.html#no-ptys"/>.</para> 46 46 47 47 <para>Sometimes package test suites will fail, but for reasons which the 48 48 developers are aware of and have deemed non-critical. Consult the logs located -
trunk/BOOK/chapter05/perl.xml
43 43 <sect2 role="installation"> 44 44 <title>Installation of Perl</title> 45 45 46 <para>First apply a series of patches to address security issues and adapt some47 hard-wired paths to the C library by applying the following patch:</para>46 <para>First apply the following patch to address security issues and adapt 47 some hard-wired paths to the C library:</para> 48 48 49 49 <screen><userinput remap="pre">patch -Np1 -i ../&perl-consolidated-patch;</userinput></screen> 50 50 -
trunk/BOOK/chapter05/gcc-pass2.xml
210 210 <varlistentry> 211 211 <term><parameter>--disable-bootstrap</parameter></term> 212 212 <listitem> 213 <para>For native builds of GCC, the default is to a "bootstrap" build.214 This does not just compile GCC, but compiles it several times. It215 uses the programs compiled in a first round to compile itself a213 <para>For native builds of GCC, the default is to do a "bootstrap" 214 build. This does not just compile GCC, but compiles it several times. 215 It uses the programs compiled in a first round to compile itself a 216 216 second time, and then again a third time. The second and third 217 217 iterations are compared to make sure it can reproduce itself 218 218 flawlessly. This also implies that it was compiled correctly. -
trunk/BOOK/chapter06/sysvinit.xml
55 55 <screen><userinput remap="pre">sed -i 's@Sending processes@& configured via /etc/inittab@g' \ 56 56 src/init.c</userinput></screen> 57 57 58 <para>A maintained version of the <command>wall</command> program is59 installed later on during the Util-linux-ng installation. Suppress the60 installation of this program and its man page:</para>58 <para>A maintained version of the <command>wall</command> program was 59 installed earlier by Util-linux-ng. Suppress the installation of Sysvinit's 60 version of this program and its man page:</para> 61 61 62 62 <screen><userinput remap="make">sed -i -e 's/utmpdump wall/utmpdump/' \ 63 63 -e 's/mountpoint.1 wall.1/mountpoint.1/' src/Makefile</userinput></screen> -
trunk/BOOK/chapter06/vim.xml
85 85 <term><parameter>--enable-multibyte</parameter></term> 86 86 <listitem> 87 87 <para>This switch enables support for editing files in multibyte 88 character encodings. 88 character encodings. This is needed if using a locale with a 89 89 multibyte character set. This switch is also helpful to be able 90 90 to edit text files initially created in Linux distributions like 91 Fedora Corethat use UTF-8 as a default character set.</para>91 Fedora that use UTF-8 as a default character set.</para> 92 92 </listitem> 93 93 </varlistentry> 94 94 -
trunk/BOOK/chapter06/bison.xml
44 44 45 45 <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen> 46 46 47 <para>The configure system causes bison to be built without support for47 <para>The configure system causes Bison to be built without support for 48 48 internationalization of error messages if a <command>bison</command> 49 program is not already in $PATH. 49 program is not already in $PATH. The following addition will correct 50 50 this:</para> 51 51 52 52 <screen><userinput remap="configure">echo '#define YYENABLE_NLS 1' >> config.h</userinput></screen>