diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-12-07 20:46:14 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-12-07 20:46:14 +0000 |
commit | 0be3d41926af8aaf32f21a8cb2dc5e881d7d7794 (patch) | |
tree | 84f0de4ffcaea8582f8fd70a97e92cd0c61609f5 /chapter05 | |
parent | 4e577add493770120b808ecd1fefdf6eb56bf542 (diff) |
Mention testsuites (or lack of them) for all packages (bug 1664)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7204 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/dejagnu.xml | 2 | ||||
-rw-r--r-- | chapter05/gettext.xml | 9 |
2 files changed, 9 insertions, 2 deletions
diff --git a/chapter05/dejagnu.xml b/chapter05/dejagnu.xml index c2c6a0057..b185c3365 100644 --- a/chapter05/dejagnu.xml +++ b/chapter05/dejagnu.xml @@ -36,6 +36,8 @@ GCC, Glibc, Grep, Make, and Sed</seg></seglistitem> <screen><userinput>make install</userinput></screen> +<para>To test the results, issue: <userinput>make check</userinput>.</para> + </sect2> diff --git a/chapter05/gettext.xml b/chapter05/gettext.xml index 20ef68519..030c9c2c3 100644 --- a/chapter05/gettext.xml +++ b/chapter05/gettext.xml @@ -39,8 +39,8 @@ <variablelist> <varlistentry> <term><parameter>--disable-shared</parameter></term> -<listitem><para>We do not need to install any of the shared gettext libraries at this -time, therefore, no need to build them.</para></listitem> +<listitem><para>We do not need to install any of the shared gettext libraries at +this time, therefore there is no need to build them.</para></listitem> </varlistentry> </variablelist> @@ -49,6 +49,11 @@ time, therefore, no need to build them.</para></listitem> <screen><userinput>make -C lib make -C src msgfmt</userinput></screen> +<para>As only one binary has been compiled, it is not possible to run the +testsuite without compiling additional support libraries from the Gettext +package. It is therefore not recommended to attempt to run the testsuite at +this stage.</para> + <para>Install the <command>msgfmt</command> binary:</para> <screen><userinput>cp -v src/msgfmt /tools/bin</userinput></screen> |