diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-11-20 00:45:59 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-11-20 00:45:59 +0000 |
commit | bcd0ce7faafae9e2e127beab3374fb1cf2e448e0 (patch) | |
tree | 142af0a60d3ea586e7e95f6897a5cedd1681c20c /chapter06 | |
parent | 538aa7a11ce19920685e26062aec82a94b3e98d3 (diff) |
Miscellaneous fixes from list.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3116 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/perl.xml | 5 | ||||
-rw-r--r-- | chapter06/zlib.xml | 9 |
2 files changed, 8 insertions, 6 deletions
diff --git a/chapter06/perl.xml b/chapter06/perl.xml index f27c7decf..7010e5f70 100644 --- a/chapter06/perl.xml +++ b/chapter06/perl.xml @@ -23,11 +23,12 @@ instead and modify the way Perl is built. If you think you can live with the (sensible) defaults Perl auto-detects, then just use the command listed above.</para> -<para>The meaning of the configure directive:</para> +<para>The meaning of the configure option:</para> <itemizedlist> <listitem><para><userinput>-Dpager="/bin/less -isR"</userinput>: This corrects -an error in the perldoc code with the invocation of the less program</para></listitem> +an error in the perldoc code with the invocation of the less +program.</para></listitem> </itemizedlist> <para>Compile the package:</para> diff --git a/chapter06/zlib.xml b/chapter06/zlib.xml index fba00043f..354994793 100644 --- a/chapter06/zlib.xml +++ b/chapter06/zlib.xml @@ -23,10 +23,11 @@ advantage of, should be taken care of by applying this patch:</para> <screen><userinput>./configure --prefix=/usr --shared</userinput></screen> -<para>Note: Zlib is known to build its shared library incorrectly if a CFLAGS -is specified in the environment. If you are using your own CFLAGS variables, -ensure you add the <emphasis role="strong">-fPIC</emphasis> directive during -this stage, and remove it afterwards.</para> +<note><para>Zlib is known to build its shared library incorrectly if CFLAGS is +specified in the environment. If you are using your own CFLAGS variable, be +sure to add the <emphasis role="strong">-fPIC</emphasis> directive to your +CFLAGS for the duration of the above command, then remove it +afterwards.</para></note> <para>Compile the package:</para> |