[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, systemd, updated. clfs-2.1.0-755-g852824d

git git at cross-lfs.org
Wed Apr 16 20:17:09 PDT 2014


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, systemd has been updated
       via  852824db325394a365d641917101cbae00d13f52 (commit)
       via  86735361ad4654d9878e6ebd6f3e562a06e26ed0 (commit)
      from  d1f79abbea94b741ae4266d9bed3114f749bc714 (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 852824db325394a365d641917101cbae00d13f52
Author: Chris Staub <chris at beaker67.com>
Date:   Wed Apr 16 23:17:01 2014 -0400

    More command explanation updates

diff --git a/BOOK/cross-tools/common/gcc-static.xml b/BOOK/cross-tools/common/gcc-static.xml
index bed0858..dce42f9 100644
--- a/BOOK/cross-tools/common/gcc-static.xml
+++ b/BOOK/cross-tools/common/gcc-static.xml
@@ -87,7 +87,6 @@ echo -en '\n#undef STANDARD_STARTFILE_PREFIX_2\n#define STANDARD_STARTFILE_PREFI
         </listitem>
       </varlistentry>
 
-
       <varlistentry>
         <term><parameter>--with-native-system-headers-dir=/tools/include</parameter></term>
         <listitem>
@@ -98,6 +97,13 @@ echo -en '\n#undef STANDARD_STARTFILE_PREFIX_2\n#define STANDARD_STARTFILE_PREFI
       </varlistentry>
 
       <varlistentry>
+        <term><parameter>--disable-shared</parameter></term>
+        <listitem>
+          <para>This tells GCC not to create a shared library.</para>
+        </listitem>
+      </varlistentry>
+
+      <varlistentry>
         <term><parameter>--without-headers</parameter></term>
         <listitem>
           <para>Disables GCC from using the target's Libc when cross compiling.</para>
diff --git a/BOOK/temp-system/64/binutils.xml b/BOOK/temp-system/64/binutils.xml
index 9670e8a..64e6b1f 100644
--- a/BOOK/temp-system/64/binutils.xml
+++ b/BOOK/temp-system/64/binutils.xml
@@ -49,10 +49,6 @@
     --enable-shared --enable-64-bit-bfd --disable-multilib</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../multilib/binutils.xml"
-    xpointer="xpointer(//*[@os='ea'])"/>
-
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/binutils.xml"
     xpointer="xpointer(//*[@os='be'])"/>
 
diff --git a/BOOK/temp-system/64/gmp.xml b/BOOK/temp-system/64/gmp.xml
index 2739e91..845c094 100644
--- a/BOOK/temp-system/64/gmp.xml
+++ b/BOOK/temp-system/64/gmp.xml
@@ -42,6 +42,10 @@
     --enable-cxx</userinput></screen>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../multilib/gmp.xml"
+    xpointer="xpointer(//*[@os='ba'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/gmp.xml"
     xpointer="xpointer(//*[@os='c'])"/>
 
diff --git a/BOOK/temp-system/common/bash.xml b/BOOK/temp-system/common/bash.xml
index 139203d..5fa0642 100644
--- a/BOOK/temp-system/common/bash.xml
+++ b/BOOK/temp-system/common/bash.xml
@@ -62,7 +62,7 @@ EOF</userinput></screen>
     --without-bash-malloc --cache-file=config.cache</userinput></screen>
 
     <variablelist os="c">
-      <title>The meaning of the configure option:</title>
+      <title>The meaning of the new configure option:</title>
 
       <varlistentry>
         <term><parameter>--without-bash-malloc</parameter></term>
diff --git a/BOOK/temp-system/common/gettext.xml b/BOOK/temp-system/common/gettext.xml
index f48c9c3..ac90800 100644
--- a/BOOK/temp-system/common/gettext.xml
+++ b/BOOK/temp-system/common/gettext.xml
@@ -40,27 +40,15 @@
     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     --disable-shared --cache-file=config.cache</userinput></screen>
 
-    <variablelist os="e">
-      <title>The meaning of the configure options:</title>
+    <para os="e">Compile the required programs and support library:</para>
 
-      <varlistentry os="e1">
-        <term><parameter>--disable-shared</parameter></term>
-        <listitem>
-          <para>This tells Gettext not to create a shared library.</para>
-        </listitem>
-      </varlistentry>
-
-    </variablelist>
-
-    <para os="f">Compile the required programs and support library:</para>
-
-<screen os="g"><userinput>make -C gnulib-lib
+<screen os="f"><userinput>make -C gnulib-lib
 make -C src msgfmt msgmerge xgettext</userinput></screen>
 
-    <para os="h">Install the <command>msgfmt</command>,
+    <para os="g">Install the <command>msgfmt</command>,
     <command>msgmerge</command> and <command>xgettext</command> binaries:</para>
 
-<screen os="i"><userinput>cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen>
+<screen os="h"><userinput>cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen>
 
   </sect2>
 
diff --git a/BOOK/temp-system/common/texinfo.xml b/BOOK/temp-system/common/texinfo.xml
index 606e07b..9d945e4 100644
--- a/BOOK/temp-system/common/texinfo.xml
+++ b/BOOK/temp-system/common/texinfo.xml
@@ -29,6 +29,21 @@
 <screen os="b"><userinput>PERL=/usr/bin/perl ./configure --prefix=/tools \
     --build=${CLFS_HOST} --host=${CLFS_TARGET}</userinput></screen>
 
+    <variablelist os="ba">
+      <title>The meaning of the new configure option:</title>
+
+      <varlistentry>
+        <term><parameter>PERL=/usr/bin/perl</parameter></term>
+        <listitem>
+          <para>This forces Texinfo to use
+          <filename class="directory">/usr/bin</filename> as the location of
+          <command>perl</command>, as some host systems may have it in
+          <filename class="directory">/bin</filename>.</para>
+        </listitem>
+      </varlistentry>
+
+    </variablelist>
+
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../../final-system/common/texinfo.xml"
     xpointer="xpointer(//*[@os='c'])"/>
diff --git a/BOOK/temp-system/common/vim.xml b/BOOK/temp-system/common/vim.xml
index 1bc2209..72460c3 100644
--- a/BOOK/temp-system/common/vim.xml
+++ b/BOOK/temp-system/common/vim.xml
@@ -85,6 +85,13 @@ EOF</userinput></screen>
         </listitem>
       </varlistentry>
 
+      <varlistentry>
+        <term><parameter>--with-tlib=ncurses</parameter></term>
+        <listitem>
+          <para>Tells Vim to use Ncurses as its terminal library.</para>
+        </listitem>
+      </varlistentry>
+
     </variablelist>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
diff --git a/BOOK/temp-system/multilib/binutils.xml b/BOOK/temp-system/multilib/binutils.xml
index 7d14c92..608ba56 100644
--- a/BOOK/temp-system/multilib/binutils.xml
+++ b/BOOK/temp-system/multilib/binutils.xml
@@ -48,18 +48,6 @@
     --build=${CLFS_HOST} --host=${CLFS_TARGET} --target=${CLFS_TARGET} \
     --disable-nls --enable-shared --enable-64-bit-bfd</userinput></screen>
 
-    <variablelist os="ea">
-      <title>The meaning of the new configure options:</title>
-
-      <varlistentry>
-        <term><parameter>CC="${CC} ${BUILD64}"</parameter></term>
-        <listitem>
-          <para>Tells the compiler to use our 64-bit build flags.</para>
-        </listitem>
-      </varlistentry>
-
-    </variablelist>
-
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/binutils.xml"
     xpointer="xpointer(//*[@os='be'])"/>
diff --git a/BOOK/temp-system/multilib/gettext.xml b/BOOK/temp-system/multilib/gettext.xml
index 87be028..502013c 100644
--- a/BOOK/temp-system/multilib/gettext.xml
+++ b/BOOK/temp-system/multilib/gettext.xml
@@ -63,10 +63,6 @@
     href="../common/gettext.xml"
     xpointer="xpointer(//*[@os='h'])"/>
 
-    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
-    href="../common/gettext.xml"
-    xpointer="xpointer(//*[@os='i'])"/>
-
   </sect2>
 
   <sect2 role="content">
diff --git a/BOOK/temp-system/multilib/gmp.xml b/BOOK/temp-system/multilib/gmp.xml
index f373696..3658539 100644
--- a/BOOK/temp-system/multilib/gmp.xml
+++ b/BOOK/temp-system/multilib/gmp.xml
@@ -41,6 +41,18 @@
     --build=${CLFS_HOST} --host=${CLFS_TARGET} \
     --libdir=/tools/lib64 --enable-cxx</userinput></screen>
 
+    <variablelist os="ba">
+      <title>The meaning of the new configure option:</title>
+
+      <varlistentry>
+        <term><parameter>CC="${CC} ${BUILD64}"</parameter></term>
+        <listitem>
+          <para>Tells the compiler to use our 64-bit build flags.</para>
+        </listitem>
+      </varlistentry>
+
+    </variablelist>
+
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/gmp.xml"
     xpointer="xpointer(//*[@os='c'])"/>
diff --git a/BOOK/temp-system/multilib/texinfo.xml b/BOOK/temp-system/multilib/texinfo.xml
index 34602fa..38e4c6f 100644
--- a/BOOK/temp-system/multilib/texinfo.xml
+++ b/BOOK/temp-system/multilib/texinfo.xml
@@ -32,6 +32,10 @@
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
     href="../common/texinfo.xml"
+    xpointer="xpointer(//*[@os='ba'])"/>
+
+    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
+    href="../common/texinfo.xml"
     xpointer="xpointer(//*[@os='c'])"/>
 
     <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"

commit 86735361ad4654d9878e6ebd6f3e562a06e26ed0
Author: Chris Staub <chris at beaker67.com>
Date:   Wed Apr 16 19:39:18 2014 -0400

    Grammar fixes

diff --git a/BOOK/cross-tools/common/bc.xml b/BOOK/cross-tools/common/bc.xml
index ce3e3a2..3fa429a 100644
--- a/BOOK/cross-tools/common/bc.xml
+++ b/BOOK/cross-tools/common/bc.xml
@@ -27,7 +27,7 @@
 <screen><userinput>./configure --prefix=/cross-tools</userinput></screen>
 
     <variablelist>
-      <title>The meaning of the configure options:</title>
+      <title>The meaning of the configure option:</title>
 
       <varlistentry>
         <term><parameter>--prefix=/cross-tools</parameter></term>
diff --git a/BOOK/cross-tools/common/gmp.xml b/BOOK/cross-tools/common/gmp.xml
index c64937f..ca007c0 100644
--- a/BOOK/cross-tools/common/gmp.xml
+++ b/BOOK/cross-tools/common/gmp.xml
@@ -45,7 +45,7 @@
   --disable-static</userinput></screen>
 
     <variablelist os="b1">
-      <title>The meaning of the new configure options:</title>
+      <title>The meaning of the new configure option:</title>
 
       <varlistentry>
         <term><parameter>--enable-cxx</parameter></term>

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

Summary of changes:
 BOOK/cross-tools/common/bc.xml         |    2 +-
 BOOK/cross-tools/common/gcc-static.xml |    8 +++++++-
 BOOK/cross-tools/common/gmp.xml        |    2 +-
 BOOK/temp-system/64/binutils.xml       |    4 ----
 BOOK/temp-system/64/gmp.xml            |    4 ++++
 BOOK/temp-system/common/bash.xml       |    2 +-
 BOOK/temp-system/common/gettext.xml    |   20 ++++----------------
 BOOK/temp-system/common/texinfo.xml    |   15 +++++++++++++++
 BOOK/temp-system/common/vim.xml        |    7 +++++++
 BOOK/temp-system/multilib/binutils.xml |   12 ------------
 BOOK/temp-system/multilib/gettext.xml  |    4 ----
 BOOK/temp-system/multilib/gmp.xml      |   12 ++++++++++++
 BOOK/temp-system/multilib/texinfo.xml  |    4 ++++
 13 files changed, 56 insertions(+), 40 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list