aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorKrejzi <krejzi@linuxfromscratch.org>2013-02-15 16:05:57 +0000
committerKrejzi <krejzi@linuxfromscratch.org>2013-02-15 16:05:57 +0000
commit099fa3db985861dabed00e1b5dc676a90e40b90f (patch)
tree0576192a5a6acd02029eb494782045b68aff950c /chapter05
parent6eb029d9c5ee901d132895e81fc86e2de9bdd6b4 (diff)
Remove && after commands in new packages. It's not used with other packages.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10152 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gettext.xml8
1 files changed, 5 insertions, 3 deletions
diff --git a/chapter05/gettext.xml b/chapter05/gettext.xml
index a8b59ea1e..4839256b7 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 binaries from Gettext.</para>
<para>Prepare Gettext for compilation:</para>
@@ -76,7 +76,9 @@ 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
test suite without compiling additional support libraries from the Gettext
@@ -85,7 +87,7 @@ make -C src msgfmt</userinput></screen>
<para>Install the <command>msgfmt</command> binary:</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>