diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-06-19 13:39:28 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-06-19 13:39:28 +0000 |
commit | 8ad79807a3c97e18a90319c9b91018b0be2bbb3c (patch) | |
tree | 2c81e99ccc07955e04e833dd91650e7a3385cbe5 /chapter06/zlib.xml | |
parent | ef57e3bcf1a7fb7eda2717fc2334fe599da01888 (diff) |
Tags corrections
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3812 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/zlib.xml')
-rw-r--r-- | chapter06/zlib.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chapter06/zlib.xml b/chapter06/zlib.xml index fe893e2c3..8aa195b62 100644 --- a/chapter06/zlib.xml +++ b/chapter06/zlib.xml @@ -30,7 +30,7 @@ some programs.</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>-fPIC</emphasis> directive to your CFLAGS for the +sure to add the <parameter>-fPIC</parameter> directive to your CFLAGS for the duration of the below <command>configure</command> command, then remove it afterwards.</para></note> @@ -50,6 +50,7 @@ afterwards.</para></note> <screen><userinput>make install</userinput></screen> <para>Now also build the non-shared (static) library:</para> + <screen><userinput>make clean ./configure --prefix=/usr make</userinput></screen> @@ -80,7 +81,7 @@ into <filename class="directory">/lib</filename>:</para> <screen><userinput>mv /usr/lib/libz.so.* /lib</userinput></screen> -<para>Now we need to fix the <filename>/usr/lib/libz.so</filename> symlink +<para>Now we need to fix the <filename class="symlink">/usr/lib/libz.so</filename> symlink because we just moved the file it points to:</para> <screen><userinput>ln -sf ../../lib/libz.so.1 /usr/lib/libz.so</userinput></screen> @@ -98,7 +99,7 @@ because we just moved the file it points to:</para> <variablelist><title>Short description</title> <varlistentry id="libz"> -<term><command>libz*</command></term> +<term><filename class="libraryfile">libz*</filename></term> <listitem> <indexterm zone="ch-system-zlib libz"><primary sortas="c-libz*">libz*</primary></indexterm> <para>contains compression and un-compression |