aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorJeremy Utley <jeremy@linuxfromscratch.org>2004-08-28 08:35:40 +0000
committerJeremy Utley <jeremy@linuxfromscratch.org>2004-08-28 08:35:40 +0000
commit4b84428ef47061eb6a50a4f6f162e1a5669abad9 (patch)
tree7a1062ff16662c3cf4f3801a7630eff25fc36b95 /chapter05
parent52cd63b60c4d942e21980c071a9157d690f1d0b6 (diff)
Minor typo correction - took the backslashes off the multi-line configure statement on gcc pass 1
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4063 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gcc-pass1.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index cba1baa93..9fa5601bb 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -44,9 +44,9 @@ cd ../gcc-build</userinput></screen>
<para>Prepare GCC for compilation:</para>
-<screen><userinput>CC="gcc -B/usr/bin" ../gcc-&gcc-version;/configure
- --prefix=/tools --libexecdir=/tools/lib
- --with-local-prefix=/tools --disable-nls
+<screen><userinput>CC="gcc -B/usr/bin" ../gcc-&gcc-version;/configure \
+ --prefix=/tools --libexecdir=/tools/lib \
+ --with-local-prefix=/tools --disable-nls \
--enable-shared --enable-languages=c</userinput></screen>
<para>The meaning of the configure options:</para>