aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2003-01-11 16:42:50 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2003-01-11 16:42:50 +0000
commit90423c094424faf7172bf9642f3db2843e11bccd (patch)
treeedfec67c6982c901a462866e5a38729adc4c90a1 /chapter05
parentce14c0706435a9bd5d51c431a6fcf06338f24771 (diff)
reworded for consistency reasons
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2308 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/bash-inst.xml2
-rw-r--r--chapter05/binutils-inst.xml12
2 files changed, 9 insertions, 5 deletions
diff --git a/chapter05/bash-inst.xml b/chapter05/bash-inst.xml
index 7315dace5..c455d1bac 100644
--- a/chapter05/bash-inst.xml
+++ b/chapter05/bash-inst.xml
@@ -26,7 +26,7 @@ following command:</para>
<para><screen><userinput>./configure --enable-static-link \
&nbsp;&nbsp;&nbsp;&nbsp;--prefix=$LFS/static --with-curses</userinput></screen></para>
-<para>The meaning of the configure switches are:</para>
+<para>The meaning of the configure options are:</para>
<itemizedlist>
<listitem><para><userinput>--enable-static-link:</userinput> This option
diff --git a/chapter05/binutils-inst.xml b/chapter05/binutils-inst.xml
index ec6c45ade..0a4954fce 100644
--- a/chapter05/binutils-inst.xml
+++ b/chapter05/binutils-inst.xml
@@ -34,13 +34,17 @@ statically.</para></listitem>
<para><screen><userinput>make LDFLAGS="-all-static" &amp;&amp;
make install</userinput></screen></para>
-<para><emphasis>make LDFLAGS="-all-static"</emphasis> is how we tell
-Binutils that all programs should be statically linked. Setting the
-<emphasis>LDFLAGS</emphasis> variable is the common way of specifying we
+<para>The meaning of the make option is:</para>
+
+<itemizedlist>
+<listitem><para><userinput>make LDFLAGS="-all-static":</userinput> This is
+how we tell Binutils that all programs should be statically linked. Setting
+the <emphasis>LDFLAGS</emphasis> variable is the common way of specifying we
want a static link to take place, however, its value and the way it is set
is not always the same. You'll see with the remaining packages that there
are different ways of setting up the <emphasis>LDFLAGS</emphasis>
-variable.</para>
+variable.</para></listitem>
+</itemizedlist>
</sect2>