Changeset 8a67f19 for chapter05


Ignore:
Timestamp:
03/31/2021 10:41:35 AM (3 years ago)
Author:
Xℹ Ruoyao <xry111@…>
Branches:
ml-11.0, multilib
Children:
e9d172b
Parents:
f5ae110a
git-author:
Thomas Trepl <thomas@…> (05/20/2019 06:04:35 AM)
git-committer:
Xℹ Ruoyao <xry111@…> (03/31/2021 10:41:35 AM)
Message:

Merge changes from trunk

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11608 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gettext.xml

    rf5ae110a r8a67f19  
    4444    <title>Installation of Gettext</title>
    4545
    46     <para>For our temporary set of tools, we only need to build and install
     46    <para>For our temporary set of tools, we only need to install
    4747    three programs from Gettext.</para>
    4848
    4949    <para>Prepare Gettext for compilation:</para>
    5050
    51 <screen><userinput remap="configure">cd gettext-tools
    52 EMACS="no" ./configure --prefix=/tools --disable-shared</userinput></screen>
     51<screen><userinput remap="configure">./configure --disable-shared</userinput></screen>
    5352
    5453    <variablelist>
    5554      <title>The meaning of the configure option:</title>
    56 
     55<!--
    5756      <varlistentry>
    5857        <term><parameter>EMACS="no"</parameter></term>
     
    6362        </listitem>
    6463      </varlistentry>
    65 
     64-->
    6665      <varlistentry>
    6766        <term><parameter>--disable-shared</parameter></term>
     
    7675    <para>Compile the package:</para>
    7776
    78 <screen><userinput remap="make">make -C gnulib-lib
    79 make -C intl pluralx.c
    80 make -C src msgfmt
    81 make -C src msgmerge
    82 make -C src xgettext</userinput></screen>
     77<screen><userinput remap="make">make</userinput></screen>
    8378
    84     <para>As only three programs have been compiled, it is not possible to run the
    85     test suite without compiling additional support libraries from the Gettext
    86     package. It is therefore not recommended to attempt to run the test suite at
    87     this stage.</para>
     79    <para>
     80    Due to the limited environment, running the test suite at this stage
     81    is not recommended.</para>
    8882
    8983    <para>Install the <command>msgfmt</command>, <command>msgmerge</command> and
    9084    <command>xgettext</command> programs:</para>
    9185
    92 <screen><userinput remap="install">cp -v src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen>
     86<screen><userinput remap="install">cp -v gettext-tools/src/{msgfmt,msgmerge,xgettext} /tools/bin</userinput></screen>
    9387
    9488  </sect2>
Note: See TracChangeset for help on using the changeset viewer.