mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 11:49:20 +01:00
Move iana-etc and the creation of a test /etc/hosts earier in the build, so
that 2 more gcc tests pass. git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross2@11940 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
3d92d63bde
commit
6e18f2f842
@ -43,6 +43,12 @@
|
|||||||
|
|
||||||
<screen><userinput>ln -sv /proc/self/mounts /etc/mtab</userinput></screen>
|
<screen><userinput>ln -sv /proc/self/mounts /etc/mtab</userinput></screen>
|
||||||
|
|
||||||
|
<para>Create a basic <filename>/etc/hosts</filename> file to be
|
||||||
|
referenced in some test suites, and in one of Perl's configuration files
|
||||||
|
as well:</para>
|
||||||
|
|
||||||
|
<screen><userinput>echo "127.0.0.1 localhost $(hostname)" > /etc/hosts</userinput></screen>
|
||||||
|
|
||||||
<para>In order for user <systemitem class="username">root</systemitem> to be
|
<para>In order for user <systemitem class="username">root</systemitem> to be
|
||||||
able to login and for the name <quote>root</quote> to be recognized, there
|
able to login and for the name <quote>root</quote> to be recognized, there
|
||||||
must be relevant entries in the <filename>/etc/passwd</filename> and
|
must be relevant entries in the <filename>/etc/passwd</filename> and
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="introduction.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="introduction.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pkgmgt.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pkgmgt.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="man-pages.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="man-pages.xml"/>
|
||||||
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iana-etc.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="glibc.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="glibc.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="zlib.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="zlib.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bzip2.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bzip2.xml"/>
|
||||||
@ -37,7 +38,6 @@
|
|||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ncurses.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ncurses.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sed.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sed.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="psmisc.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="psmisc.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iana-etc.xml"/>
|
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gettext.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gettext.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/>
|
||||||
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grep.xml"/>
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="grep.xml"/>
|
||||||
|
@ -124,10 +124,11 @@ su tester -c "PATH=$PATH make -k check"</userinput></screen>
|
|||||||
<para>Six tests related to get_time are known to fail. These are
|
<para>Six tests related to get_time are known to fail. These are
|
||||||
apparently related to the en_HK locale.</para>
|
apparently related to the en_HK locale.</para>
|
||||||
|
|
||||||
|
<!-- don't fail anymore after the move of iana-etc and /etc/hosts
|
||||||
<para>Two tests named lookup.cc and reverse.cc in experimental/net
|
<para>Two tests named lookup.cc and reverse.cc in experimental/net
|
||||||
are known to fail in LFS chroot environment because they require
|
are known to fail in LFS chroot environment because they require
|
||||||
/etc/hosts and iana-etc.</para>
|
/etc/hosts and iana-etc.</para>
|
||||||
|
-->
|
||||||
<para>A few unexpected failures cannot always be avoided. The GCC developers
|
<para>A few unexpected failures cannot always be avoided. The GCC developers
|
||||||
are usually aware of these issues, but have not resolved them yet.
|
are usually aware of these issues, but have not resolved them yet.
|
||||||
Unless the test results are vastly different from those at the above URL,
|
Unless the test results are vastly different from those at the above URL,
|
||||||
|
@ -41,12 +41,6 @@
|
|||||||
<sect2 role="installation">
|
<sect2 role="installation">
|
||||||
<title>Installation of Perl</title>
|
<title>Installation of Perl</title>
|
||||||
|
|
||||||
<para>First create a basic <filename>/etc/hosts</filename> file to be
|
|
||||||
referenced in one of Perl's configuration files as well as the optional
|
|
||||||
test suite:</para>
|
|
||||||
|
|
||||||
<screen><userinput remap="pre">echo "127.0.0.1 localhost $(hostname)" > /etc/hosts</userinput></screen>
|
|
||||||
|
|
||||||
<para>This version of Perl now builds the Compress::Raw::Zlib and
|
<para>This version of Perl now builds the Compress::Raw::Zlib and
|
||||||
Compress::Raw::BZip2 modules. By
|
Compress::Raw::BZip2 modules. By
|
||||||
default Perl will use an internal copy of the sources for the build.
|
default Perl will use an internal copy of the sources for the build.
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
<!ENTITY version "20200613-cross2">
|
<!ENTITY version "20200614-cross2">
|
||||||
<!ENTITY short-version "svn"> <!-- Used below in &blfs-book;
|
<!ENTITY short-version "svn"> <!-- Used below in &blfs-book;
|
||||||
Change to x.y for release but not -rc releases -->
|
Change to x.y for release but not -rc releases -->
|
||||||
<!ENTITY generic-version "cross-chap5"> <!-- Use "development" or "x.y[-pre{x}]" -->
|
<!ENTITY generic-version "cross-chap5"> <!-- Use "development" or "x.y[-pre{x}]" -->
|
||||||
|
|
||||||
<!ENTITY versiond "20200613-cross2-systemd">
|
<!ENTITY versiond "20200614-cross2-systemd">
|
||||||
<!ENTITY short-versiond "systemd">
|
<!ENTITY short-versiond "systemd">
|
||||||
<!ENTITY generic-versiond "20200613-cross2-systemd">
|
<!ENTITY generic-versiond "20200614-cross2-systemd">
|
||||||
|
|
||||||
<!ENTITY releasedate "June 13th, 2020">
|
<!ENTITY releasedate "June 14th, 2020">
|
||||||
|
|
||||||
<!ENTITY copyrightdate "1999-2020"><!-- jhalfs needs a literal dash, not – -->
|
<!ENTITY copyrightdate "1999-2020"><!-- jhalfs needs a literal dash, not – -->
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user