diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2013-03-29 11:27:05 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2013-03-29 11:27:05 +0000 |
commit | 4e179e7764f6b382a4b33d61c49112698c11ff3b (patch) | |
tree | 20401fcc34f0b998b25fc84fb6d3f44762df20e1 /chapter05 | |
parent | d73690480dd649ad32c3fa3ef4b86ea5a85f50ec (diff) |
Remove instructions to prevent the building of GCC's info files.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10228 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, 0 insertions, 10 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index ca4f4defe..cd7c4e0ba 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -105,11 +105,6 @@ 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 7ca724ce9..60c9f467d 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -97,11 +97,6 @@ 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 |