Changeset f76cde8


Ignore:
Timestamp:
01/07/2006 11:09:01 PM (18 years ago)
Author:
Ken Moffat <ken@…>
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.3, 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:
2df049de
Parents:
9a404f49
Message:

Move creation of /etc/hosts in Perl, to remove another ICA difference.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r9a404f49 rf76cde8  
    125125</listitem>
    126126
     127<listitem><para>January 7, 2006 [ken]: Alter the Perl instructions to
     128always create an /etc/hosts file.  This fixes a potential difference in
     129the 'hostcat' recorded in Config_heavy.pl.  Thanks to Bryan Kadzban for
     130explaining this.</para></listitem>
     131
    127132<listitem><para>January 7, 2006 [ken]: Move grep ahead of libtool, so
    128133that the latter will correctly reference /bin/grep in references to EGREP.
  • chapter06/perl.xml

    r9a404f49 rf76cde8  
    2929<title>Installation of Perl</title>
    3030
     31<para>First create a basic <filename>/etc/hosts</filename> file which will be
     32referenced in one of Perl's configuration files as well as being used used by
     33the testsuite if you run that.</para>
     34
     35<screen><userinput>echo "127.0.0.1 localhost $(hostname)" &gt; /etc/hosts</userinput></screen>
     36
    3137<para>To have full control over the way Perl is set up, run the
    3238interactive <command>Configure</command> script and hand-pick the way
     
    5056
    5157<screen><userinput>make</userinput></screen>
    52 
    53 <para>To run the test suite, first create a basic
    54 <filename>/etc/hosts</filename> file which is needed by a couple of the tests to
    55 resolve the network name localhost:</para>
    56 
    57 <screen><userinput>echo "127.0.0.1 localhost $(hostname)" &gt; /etc/hosts</userinput></screen>
    5858
    5959<para>Now run the tests, if desired:</para>
  • chapter07/hosts.xml

    r9a404f49 rf76cde8  
    99  <?dbhtml filename="hosts.html"?>
    1010
    11   <title>Creating the /etc/hosts File</title>
     11  <title>Customizing the /etc/hosts File</title>
    1212
    1313  <indexterm zone="ch-scripts-hosts">
Note: See TracChangeset for help on using the changeset viewer.