diff options
author | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-05-07 19:58:09 +0000 |
---|---|---|
committer | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-05-07 19:58:09 +0000 |
commit | 0a6f214d5d13b95f9fa6c0b038a19a91d5702065 (patch) | |
tree | f4403ea47cb57a630d080c900a35c85bd253201a | |
parent | 006ed0368e8b992a325bf9522965ccb70f67c2f3 (diff) |
Fix post-GCC sanity check headers path
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8120 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 11 | ||||
-rw-r--r-- | chapter06/gcc.xml | 3 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 15 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index d784e2e10..05836a4cc 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -37,6 +37,17 @@ --> <listitem> + <para>2007-05-07</para> + <itemizedlist> + <listitem> + <para>[dnicholson] - Fixed the toolchain sanity check after GCC + to reference the /usr/local/include directory. Thanks to David + Murphy for the report.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2007-05-05</para> <itemizedlist> <listitem> diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index 3db1fd945..1c03d0348 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -161,13 +161,14 @@ cd ../gcc-build</userinput></screen> href="readjusting.xml" xpointer="xpointer(//*[@os='g'])"/> -<screen><userinput>grep -B2 '^ /usr/include' dummy.log</userinput></screen> +<screen><userinput>grep -B3 '^ /usr/include' dummy.log</userinput></screen> <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="readjusting.xml" xpointer="xpointer(//*[@os='h'])"/> <screen><computeroutput>#include <...> search starts here: + /usr/local/include /usr/lib/gcc/i686-pc-linux-gnu/&gcc-version;/include /usr/include</computeroutput></screen> diff --git a/general.ent b/general.ent index 5e66d6fd5..4434d90e9 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "SVN-20070505"> -<!ENTITY releasedate "April 05, 2007"> +<!ENTITY version "SVN-20070507"> +<!ENTITY releasedate "April 07, 2007"> <!ENTITY milestone "6.3"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> |