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
This commit is contained in:
Jeremy Utley 2004-08-28 08:35:40 +00:00
parent 52cd63b60c
commit 4b84428ef4

View File

@ -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>