diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-02-18 21:33:51 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2013-02-18 21:33:51 +0000 |
commit | dd06b538b57f5f10ad8138576ad6ebf9fe7a6c69 (patch) | |
tree | 3fbb87ce3e44acf9dc5bd185c74406e0b187e79f /chapter05 | |
parent | 57969419f505b1651f212e926870f9ffcae6788f (diff) |
Update to texinfo-5.0 and linux-3.7.9.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10162 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/gcc-pass1.xml | 5 | ||||
-rw-r--r-- | chapter05/gcc-pass2.xml | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index b7f97a386..bf8076d1b 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -105,6 +105,11 @@ done</userinput></screen> <screen><userinput remap="pre">sed -i '/k prot/agcc_cv_libc_provides_ssp=yes' gcc/configure</userinput></screen> + <para>Do not build the .info files. They are not needed here and + are broken with the current version of <command>makeinfo</command>.</para> + +<screen><userinput remap="pre">sed -i 's/BUILD_INFO=info/BUILD_INFO=/' gcc/configure</userinput></screen> + <para>The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory:</para> diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index 6c936debc..6e7631741 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -97,6 +97,11 @@ mv -v gmp-&gmp-version; gmp tar -zxf ../mpc-&mpc-version;.tar.gz mv -v mpc-&mpc-version; mpc</userinput></screen> + <para>Again, do not build the .info files. They are not needed here and + are broken with the current version of <command>makeinfo</command>.</para> + + <screen><userinput remap="pre">sed -i 's/BUILD_INFO=info/BUILD_INFO=/' gcc/configure</userinput></screen> + <para>Create a separate build directory again:</para> <screen><userinput remap="pre">mkdir -v ../gcc-build |