Changeset 67d4ac0


Ignore:
Timestamp:
03/02/2014 10:55:01 PM (10 years ago)
Author:
Krejzi <krejzi@…>
Branches:
7.5-systemd, 7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
Children:
4c78d75, a7b7506
Parents:
a28a16c
Message:

Final merge for 7.5.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10498 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    ra28a16c r67d4ac0  
    3737-->
    3838    <listitem>
     39      <para>2014-03-02</para>
     40      <itemizedlist>
     41        <listitem>
     42          <para>[krejzi] - Merge LFS SVN-20140302 book.</para>
     43        </listitem>
     44        <listitem>
     45          <para>[bdubbs] - Update host system requirements to address
     46          possible host installation of inconsistent libraries.</para>
     47        </listitem>
     48      </itemizedlist>
     49    </listitem>
     50
     51    <listitem>
    3952      <para>2014-02-18</para>
    4053      <itemizedlist>
  • general.ent

    ra28a16c r67d4ac0  
    1 <!ENTITY version         "20140226-systemd">
    2 <!ENTITY releasedate     "February 26, 2014">
     1<!ENTITY version         "20140302-systemd">
     2<!ENTITY releasedate     "March 2, 2014">
    33<!ENTITY copyrightdate   "1999-2014"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone       "7.5">
  • prologue/hostreqs.xml

    ra28a16c r67d4ac0  
    6565      compiler, <command>g++</command> (Versions greater than &gcc-version; are
    6666      not recommended as they have not been tested)</para>
     67
     68      <note><para>On some distributions, there have been reports that some
     69      libraries used by gcc can be in an inconsistent state and that this
     70      interferes with building some LFS packages.  To check this, look in
     71      /usr/lib and possibly /usr/lib64 for libgmp.la, libmpfr.la, and
     72      libmpc.la.  Either all three should be present or absent, but not only
     73      one or two.  If the problem exists on your system, either rename or
     74      delete the .la files or install the appropriate missing
     75      package.</para></note>
     76
    6777    </listitem>
    6878
     
    185195  then echo "g++ compilation OK";
    186196  else echo "g++ compilation failed"; fi
    187 rm -f dummy.c dummy</literal>
     197rm -f dummy.c dummy
     198
     199for lib in lib{gmp,mpfr,mpc}.la; do
     200  echo $lib: $(if find /usr/lib* -name $lib|
     201               grep -q $lib;then :;else echo not;fi) found
     202done
     203unset lib</literal>
    188204EOF
    189205
  • prologue/standards.xml

    ra28a16c r67d4ac0  
    113113        <term><emphasis>LSB Core:</emphasis></term>
    114114        <listitem>
    115           <para>At, Batch (a part of At), Cpio, Fcrontab, Initd-tools,
     115          <para>At, Batch (a part of At), Cpio, Ed, Fcrontab, Initd-tools,
    116116          Lsb_release, PAM, Sendmail (or Postfix or Exim) </para>
    117117        </listitem>
     
    166166        <term><emphasis>LSB Core:</emphasis></term>
    167167        <listitem>
    168           <para>None</para>
     168          <para>time (executable) and pax</para>
    169169        </listitem>
    170170      </varlistentry>
Note: See TracChangeset for help on using the changeset viewer.