Revert chap5 gettext change. I commited it by accident.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd/BOOK@10153 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Krejzi 2013-02-15 16:07:15 +00:00
parent 099fa3db98
commit 24c15531dd

View File

@ -44,7 +44,7 @@
<title>Installation of Gettext</title> <title>Installation of Gettext</title>
<para>For our temporary set of tools, we only need to build and install <para>For our temporary set of tools, we only need to build and install
three binaries from Gettext.</para> one binary from Gettext.</para>
<para>Prepare Gettext for compilation:</para> <para>Prepare Gettext for compilation:</para>
@ -76,9 +76,7 @@ EMACS="no" ./configure --prefix=/tools --disable-shared</userinput></screen>
<para>Compile the package:</para> <para>Compile the package:</para>
<screen><userinput remap="make">make -C gnulib-lib <screen><userinput remap="make">make -C gnulib-lib
make -C src msgfmt make -C src msgfmt</userinput></screen>
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 one binary has been compiled, it is not possible to run the
test suite without compiling additional support libraries from the Gettext test suite without compiling additional support libraries from the Gettext
@ -87,7 +85,7 @@ make -C src xgettext</userinput></screen>
<para>Install the <command>msgfmt</command> binary:</para> <para>Install the <command>msgfmt</command> binary:</para>
<screen><userinput remap="install">cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen> <screen><userinput remap="install">cp -v src/msgfmt /tools/bin</userinput></screen>
</sect2> </sect2>