diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2006-05-31 15:30:20 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2006-05-31 15:30:20 +0000 |
commit | fe10b9c24a8619f31d98416e0cd177ac31c4463d (patch) | |
tree | 1f1c643fe2bcf561302bc34273213fcba9052f38 | |
parent | b7a775eb552eee25b220ee6d0b13149310aef79e (diff) |
Added tee to chapter 6's glibc make check.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7640 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 13 | ||||
-rw-r--r-- | chapter06/glibc.xml | 2 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 15 insertions, 4 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 181ee275d..3942a5913 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -37,6 +37,17 @@ --> <listitem> + <para>May 31, 2006</para> + <itemizedlist> + <listitem> + <para>[gerard] - Added <command>tee</command> to chapter 6's Glibc + <command>make check</command> so the output can be seen on screen + as well as captured in the log file.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>May 30, 2006</para> <itemizedlist> <listitem> @@ -46,7 +57,7 @@ </listitem> <listitem> <para>[matthew] - Removed <command>getunimap</command>, - <command>setlogons</command> and <command>setvesablank</command> from + <command>setlogons</command>, and <command>setvesablank</command> from the list of programs installed by kbd. Thanks to Chris Staub for the patch.</para> </listitem> diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index d69096b9c..b520de640 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -125,7 +125,7 @@ cd ../glibc-build</userinput></screen> <para>Test the results:</para> -<screen><userinput>make -k check >glibc-check-log 2>&1 +<screen><userinput>make -k check 2>&1 | tee glibc-check-log grep Error glibc-check-log</userinput></screen> <para>On at least i686 you can expect to see failures in the diff --git a/general.ent b/general.ent index e593fc341..7f02c638c 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "SVN-2006030"> -<!ENTITY releasedate "May 30, 2006"> +<!ENTITY version "SVN-20060531"> +<!ENTITY releasedate "May 31, 2006"> <!ENTITY milestone "6.2"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> |