diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-02-03 23:24:24 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2003-02-03 23:24:24 +0000 |
commit | e4b9338243e80e23c08eccaaf770259edbe72c5d (patch) | |
tree | e7f115ade9983172971131d41934b6e1e90959bb /chapter05/diffutils-inst.xml | |
parent | 6f531d7b8c0fa937866a56c6ab729fc0f75d94e0 (diff) |
fix typo's
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2416 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/diffutils-inst.xml')
-rw-r--r-- | chapter05/diffutils-inst.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chapter05/diffutils-inst.xml b/chapter05/diffutils-inst.xml index 90ecbfc64..c67b41d1a 100644 --- a/chapter05/diffutils-inst.xml +++ b/chapter05/diffutils-inst.xml @@ -11,7 +11,7 @@ <para>The meaning of the configure options are:</para> <itemizedlist> -<listitem><para><userinput>LDFLAGS="-static":</userinput> This is the most +<listitem><para><userinput>LDFLAGS="-static"</userinput>: This is the most common way to tell a package that all programs should be statically linked. This way the <emphasis>LDFLAGS</emphasis> environment variable is set, but only in the subshell that the <filename>configure</filename> script runs @@ -20,9 +20,8 @@ in. When <userinput>configure</userinput> has done its job, the and the <filename>Makefile</filename> files contain will contain this variable locally.</para></listitem> -<listitem><para><userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2:</userinput> -The <emphasis>CPPFLAGS</emphasis> variable is a variable that's read by the -cpp program (C PreProcessor). The value of this variable tells the +<listitem><para><userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2</userinput>: The <emphasis>CPPFLAGS</emphasis> variable is a variable that's read by +the cpp program (C PreProcessor). The value of this variable tells the preprocessor to replace every instance of <emphasis>re_max_failures</emphasis> it finds with <emphasis>re_max_failures2</emphasis> before handing the source file to the compiler itself for compilation. This package has problems |