mv shared zlib lib to /lib instead of using --libdir

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2123 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Timothy Bauscher 2002-09-22 02:06:55 +00:00
parent 88abb11b7b
commit f8decc78cf
2 changed files with 4 additions and 4 deletions

View File

@ -60,8 +60,7 @@
</para></listitem> </para></listitem>
<listitem><para>September 21st, 2002 [timothy]: Chapter 06 - Zlib: <listitem><para>September 21st, 2002 [timothy]: Chapter 06 - Zlib:
Added <userinput>--libdir=/lib</userinput> flag to <userinput>mv</userinput> shared lib to /lib.</para></listitem>
<userinput>configure</userinput>.</para></listitem>
<listitem><para>September 20th, 2002 [timothy]: Chapter 05 - GCC: <listitem><para>September 20th, 2002 [timothy]: Chapter 05 - GCC:
Removed the <userinput>--enable-threads=posix</userinput> flag since we Removed the <userinput>--enable-threads=posix</userinput> flag since we

View File

@ -3,10 +3,11 @@
<para>Install Zlib by running the following commands:</para> <para>Install Zlib by running the following commands:</para>
<para><screen><userinput>./configure --prefix=/usr --libdir=/lib --shared &amp;&amp; <para><screen><userinput>./configure --prefix=/usr --shared &amp;&amp;
make LIBS="libz.so.1.1.4 libz.a" &amp;&amp; make LIBS="libz.so.1.1.4 libz.a" &amp;&amp;
make LIBS="libz.so.1.1.4 libz.a" install &amp;&amp; make LIBS="libz.so.1.1.4 libz.a" install &amp;&amp;
mv /usr/lib/libz.so.* /lib &amp;&amp;
ln -sf ../../lib/libz.so.1 /usr/lib/libz.so &amp;&amp;
cp zlib.3 /usr/share/man/man3</userinput></screen></para> cp zlib.3 /usr/share/man/man3</userinput></screen></para>
</sect2> </sect2>