diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-06-14 15:24:09 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-06-14 15:24:09 +0000 |
commit | 3d92d63bde160bc5ac98f44ec2cc5dd524e06042 (patch) | |
tree | 64c7e407e67852878922f83c3f31554e111d2c94 /chapter08 | |
parent | a4053b5ba2f039f90fed570bffa9ea6e5cba0ff0 (diff) |
Minor updates.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross2@11939 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/automake.xml | 14 | ||||
-rw-r--r-- | chapter08/bison.xml | 25 | ||||
-rw-r--r-- | chapter08/shadow.xml | 3 |
3 files changed, 4 insertions, 38 deletions
diff --git a/chapter08/automake.xml b/chapter08/automake.xml index 7c4143e91..f89f71ced 100644 --- a/chapter08/automake.xml +++ b/chapter08/automake.xml @@ -53,26 +53,12 @@ <screen><userinput remap="make">make</userinput></screen> -<!--<para>There are a couple of tests that incorrectly link to the - wrong version of the flex library, so we temporarily work around - the problem. Also, using the -j4 make option speeds up the tests, even on - systems with only one processor, due to internal delays in individual - tests. To test the results, issue:</para> - --> - <para> Using the -j4 make option speeds up the tests, even on systems with only one processor, due to internal delays in individual tests. To test the results, issue:</para> - <!--<screen><userinput remap="test">sed -i "s:./configure:LEXLIB=/usr/lib/libfl.a &:" t/lex-{clean,depend}-cxx.sh - make -j4 check</userinput></screen>--> - <screen><userinput remap="test">make -j4 check</userinput></screen> - - <para>One test is known to fail in the LFS environment: - tags-lisp-space.sh.</para> - <para>Install the package:</para> <screen><userinput remap="install">make install</userinput></screen> diff --git a/chapter08/bison.xml b/chapter08/bison.xml index 687cdf9ee..1727660d8 100644 --- a/chapter08/bison.xml +++ b/chapter08/bison.xml @@ -39,38 +39,19 @@ <sect2 role="installation"> <title>Installation of Bison</title> -<!-- - <para>First, fix a build problem with the current version:</para> -<screen><userinput remap="pre">sed -i '9327 s/mv/cp/' Makefile.in</userinput></screen> ---> <para>Prepare Bison for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/bison-&bison-version;</userinput></screen> -<!-- I could not find a race condidtion in the current version. - <para>Compile the package, but work around a race condition in the - current version:</para> - -<screen><userinput remap="make">make -j1</userinput></screen>--> - <para>Compile the package:</para> <screen><userinput remap="make">make</userinput></screen> - <para>To test the results (about 5.5 SBU), issue:</para> - -<screen><userinput remap="test">make check</userinput></screen> - - <para>Fourteen tests fail in the "Diagnostics" section, probably because of - missing locales.</para> + <para>The tests are known to fail using multiple processors. + To test the results (about 5.5 SBU), issue:</para> -<!-- - <para>There is a circular dependency between bison and flex with regard to - the checks. If desired, after installing flex in the next section, the - bison package can be rebuilt and the bison checks can be run with - <command>make check</command>.</para> ---> +<screen><userinput remap="test">make -j1 check</userinput></screen> <para>Install the package:</para> diff --git a/chapter08/shadow.xml b/chapter08/shadow.xml index 36a81d966..3ccbfbb58 100644 --- a/chapter08/shadow.xml +++ b/chapter08/shadow.xml @@ -67,8 +67,7 @@ find man -name Makefile.in -exec sed -i 's/passwd\.5 / /' {} \;</userinput></s for user mailboxes that Shadow uses by default to the <filename class="directory">/var/mail</filename> location used currently:</para> -<screen><userinput remap="pre"> -sed -e 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD SHA512:' \ +<screen><userinput remap="pre">sed -e 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD SHA512:' \ -e 's:/var/spool/mail:/var/mail:' \ -i etc/login.defs</userinput></screen> |