diff options
-rw-r--r-- | chapter01/changelog.xml | 3 | ||||
-rw-r--r-- | chapter06/zlib-inst.xml | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index c02ec1d2a..76f2219e8 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -60,8 +60,7 @@ </para></listitem> <listitem><para>September 21st, 2002 [timothy]: Chapter 06 - Zlib: -Added <userinput>--libdir=/lib</userinput> flag to -<userinput>configure</userinput>.</para></listitem> +<userinput>mv</userinput> shared lib to /lib.</para></listitem> <listitem><para>September 20th, 2002 [timothy]: Chapter 05 - GCC: Removed the <userinput>--enable-threads=posix</userinput> flag since we diff --git a/chapter06/zlib-inst.xml b/chapter06/zlib-inst.xml index f979284bb..6c25a715c 100644 --- a/chapter06/zlib-inst.xml +++ b/chapter06/zlib-inst.xml @@ -3,10 +3,11 @@ <para>Install Zlib by running the following commands:</para> -<para><screen><userinput>./configure --prefix=/usr --libdir=/lib --shared && +<para><screen><userinput>./configure --prefix=/usr --shared && make LIBS="libz.so.1.1.4 libz.a" && make LIBS="libz.so.1.1.4 libz.a" install && +mv /usr/lib/libz.so.* /lib && +ln -sf ../../lib/libz.so.1 /usr/lib/libz.so && cp zlib.3 /usr/share/man/man3</userinput></screen></para> </sect2> - |