diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-07-21 20:27:14 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-07-21 20:27:14 +0000 |
commit | c46661f512b5d71dd336cabd0e9e792ddaf78bd0 (patch) | |
tree | 65eeac856097e96856007e5a701fa23d877a8b57 | |
parent | 7c18117aa5d685b78697a0f951cbb045aec68297 (diff) |
Unset GCC_INCLUDEDIR variable once it's no longer needed
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/gcc4/BOOK@6566 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 3 | ||||
-rw-r--r-- | chapter05/adjusting.xml | 3 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 686604093..837fd800b 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -112,6 +112,9 @@ First a summary, then a detailed log.</para> </itemizedlist> </listitem> +<listitem><para>July 21st, 2005 [matt]: Unset the GCC_INCLUDEDIR variable once +it's no longer needed.</para></listitem> + <listitem><para>July 18th, 2005 [matt]: Re-added the explanation of the fixincludes process and rewording where necessary (Chris Staub), and reworded description of the specs patch.</para></listitem> <listitem><para>July 18th, 2005 [matt]: Remove all host headers brought in via the fixincludes process, not just pthread.h and sigaction.h</para></listitem> diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml index 186a82533..9bb55031a 100644 --- a/chapter05/adjusting.xml +++ b/chapter05/adjusting.xml @@ -68,7 +68,8 @@ This is explained in more detail later in this chapter. Run the following comman <!-- && used to ease copy and pasting --> <screen><userinput>GCC_INCLUDEDIR=`gcc -print-search-dirs | head -n 1 | awk '{ print $2 "include" }'` && find ${GCC_INCLUDEDIR}/* -xtype d -exec rm -rf \{} \; && -rm -f `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*`;</userinput></screen> +rm -f `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` && +unset GCC_INCLUDEDIR</userinput></screen> <caution><para>At this point, it is imperative to stop and ensure that the basic functions (compiling and linking) of the new toolchain are diff --git a/general.ent b/general.ent index 8a44a9e98..a0179b1de 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "GCC4-20050720"> -<!ENTITY releasedate "July 20, 2005"> +<!ENTITY version "GCC4-20050721"> +<!ENTITY releasedate "July 21, 2005"> <!ENTITY milestone "6.2"> <!ENTITY generic-version "gcc4"> <!-- Use "svn", "testing", or "x.y[-pre{x}]" --> |