[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. 0e1672e97bda5b5332815f790384be8106310c54

git git at cross-lfs.org
Tue Sep 4 15:19:33 PDT 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  0e1672e97bda5b5332815f790384be8106310c54 (commit)
      from  52595c6d9ab1c1e9fe1935583f59afe1ca3c9a68 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0e1672e97bda5b5332815f790384be8106310c54
Author: William Harrington <kb0iic at gmail.com>
Date:   Tue Sep 4 17:19:29 2012 -0500

    Add additional instruction to the final system binutils build in all books.

diff --git a/BOOK/final-system/common/bison.xml b/BOOK/final-system/common/bison.xml
index 63dd97c..5b69a81 100644
--- a/BOOK/final-system/common/bison.xml
+++ b/BOOK/final-system/common/bison.xml
@@ -24,9 +24,14 @@
   <sect2 role="installation">
     <title>Installation of Bison</title>
 
+    <para os="t3">The <command>configure </command>script does not determine
+    the correct value for the following. Set the value manually:</para>
+
+<screen os="t4"><userinput>echo "ac_cv_prog_lex_is_flex=yes" > config.cache</userinput></screen>
+
     <para os="a">Prepare Bison for compilation:</para>
 
-<screen os="b"><userinput>./configure --prefix=/usr</userinput></screen>
+<screen os="b"><userinput>./configure --prefix=/usr --cache-file=config.cache</userinput></screen>
 
     <para os="c">Compile the package:</para>
 
diff --git a/BOOK/final-system/multilib/bison-64bit.xml b/BOOK/final-system/multilib/bison-64bit.xml
index e6110cc..7a40884 100644
--- a/BOOK/final-system/multilib/bison-64bit.xml
+++ b/BOOK/final-system/multilib/bison-64bit.xml
@@ -23,6 +23,14 @@
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/bison.xml"
+    xpointer="xpointer(//*[@os='t3'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/bison.xml"
+    xpointer="xpointer(//*[@os='t4'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/bison.xml"
     xpointer="xpointer(//*[@os='a'])"/>
 
 <screen os="b"><userinput>CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64</userinput></screen>
diff --git a/BOOK/final-system/multilib/bison-n32.xml b/BOOK/final-system/multilib/bison-n32.xml
index bca1be0..0e31f4e 100644
--- a/BOOK/final-system/multilib/bison-n32.xml
+++ b/BOOK/final-system/multilib/bison-n32.xml
@@ -24,6 +24,14 @@
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/bison.xml"
+    xpointer="xpointer(//*[@os='t3'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/bison.xml"
+    xpointer="xpointer(//*[@os='t4'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/bison.xml"
     xpointer="xpointer(//*[@os='a'])"/>
 
 <screen os="b"><userinput>CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32</userinput></screen>
diff --git a/BOOK/final-system/multilib/bison.xml b/BOOK/final-system/multilib/bison.xml
index 5c85d7c..0f3a6e5 100644
--- a/BOOK/final-system/multilib/bison.xml
+++ b/BOOK/final-system/multilib/bison.xml
@@ -24,6 +24,14 @@
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/bison.xml"
+    xpointer="xpointer(//*[@os='t3'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/bison.xml"
+    xpointer="xpointer(//*[@os='t4'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/bison.xml"
     xpointer="xpointer(//*[@os='a'])"/>
 
 <screen os="b"><userinput>CC="gcc ${BUILD32}" ./configure --prefix=/usr</userinput></screen>
diff --git a/BOOK/general.ent b/BOOK/general.ent
index 5b65ac9..34cebd1 100644
--- a/BOOK/general.ent
+++ b/BOOK/general.ent
@@ -2,7 +2,7 @@
 
 <!ENTITY month "09"> <!-- Use two digits -->
 <!ENTITY month_name "August">
-<!ENTITY day "03"> <!-- Use two digits -->
+<!ENTITY day "04"> <!-- Use two digits -->
 <!ENTITY year "2012"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">
diff --git a/BOOK/introduction/common/changelog.xml b/BOOK/introduction/common/changelog.xml
index 73bb4a6..b6b97d3 100644
--- a/BOOK/introduction/common/changelog.xml
+++ b/BOOK/introduction/common/changelog.xml
@@ -36,6 +36,15 @@
     </listitem>
 -->
     <listitem>
+      <para>September 04, 2012</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Add a command to final-sytem Bison to add a variable to config.cache.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+   <listitem>
       <para>September 03, 2012</para>
       <itemizedlist>
         <listitem>

-----------------------------------------------------------------------

Summary of changes:
 BOOK/final-system/common/bison.xml         |    7 ++++++-
 BOOK/final-system/multilib/bison-64bit.xml |    8 ++++++++
 BOOK/final-system/multilib/bison-n32.xml   |    8 ++++++++
 BOOK/final-system/multilib/bison.xml       |    8 ++++++++
 BOOK/general.ent                           |    2 +-
 BOOK/introduction/common/changelog.xml     |    9 +++++++++
 6 files changed, 40 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list