Changeset 067e51d


Ignore:
Timestamp:
04/11/2008 07:48:05 PM (16 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
2380f02
Parents:
6069b7e
Message:

Updated host requirments to check for symlinks

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r6069b7e r067e51d  
    1 <?xml version="1.0" encoding="ISO-8859-1"?>
     1e?xml version="1.0" encoding="ISO-8859-1"?>
    22<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
    33  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
     
    3838
    3939    <listitem>
     40      <para>2008-04-11</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[bdubbs] - Updated host requirments to check for
     44          symbolic links from sh, awk, and yacc.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
     49    <listitem>
    4050      <para>2008-04-03</para>
    4151      <itemizedlist>
     
    4959        <listitem>
    5060          <para>[jhuntwork] - Added patch for 256-byte inode support in GRUB.
    51           Fixes #2161.</para>
     61          Fixes #2161.</para>
    5262        </listitem>
    5363      </itemizedlist>
     
    95105        </listitem>
    96106        <listitem>
    97           <para>[ken] - Updated Kbd to 1.13.</para>
     107          <para>[ken] - Updated Kbd to 1.13.</para>
    98108        </listitem>
    99109      </itemizedlist>
     
    119129        <listitem>
    120130          <para>[ken] - Updated Grep to 2.5.3, thanks to Matthew for the fix
    121           for automated builds.</para>
    122         </listitem>
    123         <listitem>
    124           <para>[ken] - Updated Flex to 2.5.34.</para>
    125         </listitem>
    126         <listitem>
    127           <para>[ken] - Updated Module-Init-Tools to 3.4.</para>
     131          for automated builds.</para>
     132        </listitem>
     133        <listitem>
     134          <para>[ken] - Updated Flex to 2.5.34.</para>
     135        </listitem>
     136        <listitem>
     137          <para>[ken] - Updated Module-Init-Tools to 3.4.</para>
    128138        </listitem>
    129139      </itemizedlist>
  • general.ent

    r6069b7e r067e51d  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "SVN-20080403">
    3 <!ENTITY releasedate "April 3, 2008">
     2<!ENTITY version "SVN-20080412">
     3<!ENTITY releasedate "April 12, 2008">
    44<!ENTITY milestone "7.0">
    55<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
  • prologue/hostreqs.xml

    r6069b7e r067e51d  
    2222
    2323    <listitem>
    24       <para><emphasis role="strong">Bash-2.05a</emphasis></para>
     24      <para><emphasis role="strong">Bash-2.05a</emphasis> (/bin/sh
     25      must be a symbolic or hard link to bash)</para>
    2526    </listitem>
    2627
     
    3233
    3334    <listitem>
    34       <para><emphasis role="strong">Bison-1.875</emphasis></para>
     35      <para><emphasis role="strong">Bison-1.875</emphasis> (/usr/bin/yacc
     36      must be a link to bison or small script that executes bison)</para>
    3537    </listitem>
    3638
     
    5355
    5456    <listitem>
    55       <para><emphasis role="strong">Gawk-3.0</emphasis></para>
     57      <para><emphasis role="strong">Gawk-3.0</emphasis> (/usr/bin/awk
     58      must be a link to gawk)</para>
    5659    </listitem>
    5760
     
    135138
    136139bash --version | head -n1 | cut -d" " -f2-4
     140ls -l `which sh`
    137141echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
    138142bison --version | head -n1
     143ls -l `which yacc`
    139144bzip2 --version 2&gt;&amp;1 &lt; /dev/null | head -n1 | cut -d" " -f1,6-
    140145echo -n "Coreutils: "; chown --version | head -n1 | cut -d")" -f2
     
    142147find --version | head -n1
    143148gawk --version | head -n1
     149ls -l `which awk`
    144150gcc --version | head -n1
    145151/lib/libc.so.6 | head -n1 | cut -d" " -f1-7
     
    151157sed --version | head -n1
    152158tar --version | head -n1
    153 makeinfo --version | head -n1</literal>
     159makeinfo --version | head -n1
     160
     161</literal>
    154162
    155163EOF
Note: See TracChangeset for help on using the changeset viewer.