diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2003-01-17 01:52:50 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2003-01-17 01:52:50 +0000 |
commit | 8f5e9ca39da4fb8fd1ea69497512a6b46cb1389f (patch) | |
tree | 48bfd88c84fffa087e81ae91546f690a69d5b00f /chapter06/libtool-inst.xml | |
parent | 9c2045d706e807d24b6c2c05a4ba8349d8426d2b (diff) |
Billy's libtool conversion.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2361 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/libtool-inst.xml')
-rw-r--r-- | chapter06/libtool-inst.xml | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/chapter06/libtool-inst.xml b/chapter06/libtool-inst.xml index 8e5774a28..ec3476566 100644 --- a/chapter06/libtool-inst.xml +++ b/chapter06/libtool-inst.xml @@ -1,11 +1,35 @@ +<sect2><title> </title><para> </para></sect2> + <sect2> <title>Installation of Libtool</title> -<para>Install Libtool by running the following commands:</para> +<para>This package requires its patch to be applied before you can + install it. Issue the following command to apply the patch:</para> + +<para><screen><userinput> +patch -Np1 -i ../libtool-&libtool-patch-version;.patch && +</userinput></screen></para> + +<para>Prepare Libtool to be compiled:</para> + +<para><screen><userinput> +./configure --prefix=/usr</userinput></screen></para> + +<para>Continue with compiling the package:</para> -<para><screen><userinput>./configure --prefix=/usr && -make && -make install</userinput></screen></para> +<para><screen><userinput>make</userinput></screen></para> + +<para>And finish off installing the package:</para> + +<para><screen><userinput>make install</userinput></screen></para> </sect2> +<sect2> +<title>Command explanations</title> + +<para><userinput>patch -Np1 -i ../libtool-&libtool-patch-version;.patch</userinput>: +This patch fixes an incompatibility between Autoconf 2.53 and Libtool 1.4.x. +Specifically, the deprecated m4 macro AC_PROVIDE_AC_LIBTOOL is replaced by +AC_PROVIDE_ELSEIF.</para> +</sect2> |