diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-09-28 19:56:31 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-09-28 19:56:31 +0000 |
commit | 8c68addc8e21ceaec084545ee0ed6c983d054232 (patch) | |
tree | bbbf33b4e4645ad6ade1d5323ff74f6d4b98a423 | |
parent | b70a039a6a3dbd79af18b31c501c37f51ee408cd (diff) |
Placed the commands to run the optional testsuites in one line. Required for jhalfs.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6911 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter05/bash.xml | 3 | ||||
-rw-r--r-- | chapter05/coreutils.xml | 4 | ||||
-rw-r--r-- | chapter05/findutils.xml | 3 | ||||
-rw-r--r-- | chapter05/gawk.xml | 3 | ||||
-rw-r--r-- | chapter05/grep.xml | 3 | ||||
-rw-r--r-- | chapter05/m4.xml | 3 | ||||
-rw-r--r-- | chapter05/make.xml | 3 | ||||
-rw-r--r-- | chapter05/sed.xml | 3 | ||||
-rw-r--r-- | chapter05/tar.xml | 3 | ||||
-rw-r--r-- | chapter05/tcl.xml | 4 | ||||
-rw-r--r-- | chapter05/texinfo.xml | 3 |
11 files changed, 13 insertions, 22 deletions
diff --git a/chapter05/bash.xml b/chapter05/bash.xml index d330c3906..1754cd832 100644 --- a/chapter05/bash.xml +++ b/chapter05/bash.xml @@ -55,8 +55,7 @@ from Glibc which are more stable.</para></listitem> <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -tests</userinput>.</para> +<para>To test the results, issue: <userinput>make tests</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/coreutils.xml b/chapter05/coreutils.xml index 1c640d139..1a049d04f 100644 --- a/chapter05/coreutils.xml +++ b/chapter05/coreutils.xml @@ -54,8 +54,8 @@ instructions be followed exactly as given above.</para> <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -RUN_EXPENSIVE_TESTS=yes check</userinput>. The +<para>To test the results, issue: +<userinput>make RUN_EXPENSIVE_TESTS=yes check</userinput>. The <parameter>RUN_EXPENSIVE_TESTS=yes</parameter> parameter tells the test suite to run several additional tests that are considered relatively expensive (in terms of CPU power and memory usage) on some diff --git a/chapter05/findutils.xml b/chapter05/findutils.xml index 6a4acf75c..6370f6aaf 100644 --- a/chapter05/findutils.xml +++ b/chapter05/findutils.xml @@ -37,8 +37,7 @@ <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/gawk.xml b/chapter05/gawk.xml index ef363424e..dafc8623e 100644 --- a/chapter05/gawk.xml +++ b/chapter05/gawk.xml @@ -43,8 +43,7 @@ echo "#define HAVE_LC_MESSAGES 1" >> config.h</userinput></screen> <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/grep.xml b/chapter05/grep.xml index c325ec1fb..cce4cd148 100644 --- a/chapter05/grep.xml +++ b/chapter05/grep.xml @@ -50,8 +50,7 @@ be present on the host but will not be available once we enter the <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/m4.xml b/chapter05/m4.xml index 5fa38289d..c1b567b42 100644 --- a/chapter05/m4.xml +++ b/chapter05/m4.xml @@ -37,8 +37,7 @@ <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/make.xml b/chapter05/make.xml index f050573a3..aed4f3dfe 100644 --- a/chapter05/make.xml +++ b/chapter05/make.xml @@ -37,8 +37,7 @@ <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/sed.xml b/chapter05/sed.xml index 89a14166a..82ede5b19 100644 --- a/chapter05/sed.xml +++ b/chapter05/sed.xml @@ -37,8 +37,7 @@ <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/tar.xml b/chapter05/tar.xml index 15c522c0d..74021ce04 100644 --- a/chapter05/tar.xml +++ b/chapter05/tar.xml @@ -42,8 +42,7 @@ some issues with GCC-&gcc-version;:</para> <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> diff --git a/chapter05/tcl.xml b/chapter05/tcl.xml index da54b25ae..7cdcf226e 100644 --- a/chapter05/tcl.xml +++ b/chapter05/tcl.xml @@ -49,8 +49,8 @@ linkend="chapter-building-system"/>.</para> <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>TZ=UTC make -test</userinput>. The Tcl test suite is known to experience failures +<para>To test the results, issue: <userinput>TZ=UTC make test</userinput>. +The Tcl test suite is known to experience failures under certain host conditions that are not fully understood. Therefore, test suite failures here are not surprising, and are not considered critical. The <parameter>TZ=UTC</parameter> parameter sets diff --git a/chapter05/texinfo.xml b/chapter05/texinfo.xml index 041ce0f7d..eae489b1f 100644 --- a/chapter05/texinfo.xml +++ b/chapter05/texinfo.xml @@ -37,8 +37,7 @@ <screen><userinput>make</userinput></screen> -<para>To test the results, issue: <userinput>make -check</userinput>.</para> +<para>To test the results, issue: <userinput>make check</userinput>.</para> <para>Install the package:</para> |