aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorKrejzi <krejzi@linuxfromscratch.org>2013-02-16 21:29:22 +0000
committerKrejzi <krejzi@linuxfromscratch.org>2013-02-16 21:29:22 +0000
commit69f85d4661be4d390afc05e0fc902147715b9db0 (patch)
tree55b120fb03ac1ad822254602ef76bcb61aa1ba7c /chapter05
parentb588d62a250dee3d20a4352043b70aede874d9c2 (diff)
Build msgmerge and xgettext programs in temporary gettext instead of moving gettext before attr in chap06. Move shadow after attr and libcap.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10161 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gettext.xml13
1 files changed, 8 insertions, 5 deletions
diff --git a/chapter05/gettext.xml b/chapter05/gettext.xml
index a8b59ea1e..bc5944742 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 programs 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>