aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2014-02-19 22:21:37 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2014-02-19 22:21:37 +0000
commite043985d033951f499e41c9a6fbfa98e84ac027f (patch)
treee73e5ed82c5335fad12ab5a6975a6ff375821df0 /chapter05
parentb83d43e5514b42808bbe327a6ad07ddac5f65f21 (diff)
Spelling and other general cleanup.
Use better method for installing kmod man pages. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10489 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gettext.xml13
-rw-r--r--chapter05/util-linux.xml2
2 files changed, 9 insertions, 6 deletions
diff --git a/chapter05/gettext.xml b/chapter05/gettext.xml
index a8b59ea1e..6df7bf751 100644
--- a/chapter05/gettext.xml
+++ b/chapter05/gettext.xml
@@ -44,7 +44,7 @@
<title>Installation of Gettext</title>
<para>For our temporary set of tools, we only need to build and install
- one binary from Gettext.</para>
+ three programs from Gettext.</para>
<para>Prepare Gettext for compilation:</para>
@@ -76,16 +76,19 @@ EMACS="no" ./configure --prefix=/tools --disable-shared</userinput></screen>
<para>Compile the package:</para>
<screen><userinput remap="make">make -C gnulib-lib
-make -C src msgfmt</userinput></screen>
+make -C src msgfmt
+make -C src msgmerge
+make -C src xgettext</userinput></screen>
- <para>As only one binary has been compiled, it is not possible to run the
+ <para>As only three prograsm have been compiled, it is not possible to run the
test suite without compiling additional support libraries from the Gettext
package. It is therefore not recommended to attempt to run the test suite at
this stage.</para>
- <para>Install the <command>msgfmt</command> binary:</para>
+ <para>Install the <command>msgfmt</command>, <command>msgmerge</command> and
+ <command>xgettext</command> programs:</para>
-<screen><userinput remap="install">cp -v src/msgfmt /tools/bin</userinput></screen>
+<screen><userinput remap="install">cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen>
</sect2>
diff --git a/chapter05/util-linux.xml b/chapter05/util-linux.xml
index 909fa6679..07b8282e6 100644
--- a/chapter05/util-linux.xml
+++ b/chapter05/util-linux.xml
@@ -75,7 +75,7 @@
<para>Setting this envronment variable prevents adding unneeded
features that may be available on the host. Note that the location
shown for setting this environment variable is different from other
- LFS sections where variables are set preceeding the command. This
+ LFS sections where variables are set preceding the command. This
location is shown to demonstrate an alternative way of setting an
environment variable when using configure.</para>
</listitem>