diff options
Diffstat (limited to 'chapter05/gettext.xml')
-rw-r--r-- | chapter05/gettext.xml | 13 |
1 files changed, 8 insertions, 5 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> |