Преглед изворни кода

Adjust wording in binutils pass1 and gcc pass1. Thanks Randy McMurchy.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/jh/BOOK@8353 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Jeremy Huntwork пре 18 година
родитељ
комит
b1ba0fa3a8
2 измењених фајлова са 5 додато и 4 уклоњено
  1. 3 2
      chapter05/binutils-pass1.xml
  2. 2 2
      chapter05/gcc-pass1.xml

+ 3 - 2
chapter05/binutils-pass1.xml

@@ -57,8 +57,9 @@ cd ../binutils-build</userinput></screen>
       &amp;&amp; make install; }</userinput>.</para>
     </note>
 
-    <para>If our host is a multilib machine, we want to ensure that we
-    build 64-bit binaries, so we'll test for that and set a variable if so:</para>
+    <para>Test to see if the host is a multilib capable machine and set a variable
+    if it is. This ensures that only 64-bit binaries are built if using such a host.
+    </para>
 
 <screen><userinput>test $(uname -m | grep 64) &amp;&amp; M64="-m64"</userinput></screen>
 

+ 2 - 2
chapter05/gcc-pass1.xml

@@ -43,8 +43,8 @@
 <screen><userinput>mkdir -v ../gcc-build
 cd ../gcc-build</userinput></screen>
 
-    <para>If our host is a multilib machine, we want to ensure that we
-    build 64-bit binaries, so we'll test for that and set a variable if so.
+    <para>Test to see if the host is a multilib capable machine and set a variable 
+    if it is. This ensures that only 64-bit binaries are built if using such a host.
     Also, the --with-arch flag is only necessary for x86 machines.</para>
 
 <screen><userinput>case $(uname -m) in