Changeset 50fdfc8


Ignore:
Timestamp:
04/19/2020 07:42:38 AM (4 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
a5dddcb
Parents:
2a73970
Message:

Allow bison to use libtextstyle from gettext by moving gettext before bison

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11813 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r2a73970 r50fdfc8  
    4747      <itemizedlist>
    4848        <listitem>
     49          <para>[pierre] - Allow bison to use the libtextstyle.so library from
     50          gettext, by moving gettext before bison. Fixes
     51          <ulink url="&lfs-ticket-root;4634">#4634</ulink>.</para>
     52        </listitem>
     53        <listitem>
    4954          <para>[pierre] - Allow some shadow programs to use "setcap" by
    5055          moving libcap before shadow. Fixes
  • chapter06/chapter06.xml

    r2a73970 r50fdfc8  
    4343  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="psmisc.xml"/>
    4444  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="iana-etc.xml"/>
     45  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gettext.xml"/>
    4546  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="bison.xml"/>
    4647  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="flex.xml"/>
     
    5859  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="automake.xml"/>
    5960  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="kmod.xml"/>
    60   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gettext.xml"/>
    6161  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libelf.xml"/>
    6262  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="libffi.xml"/>
  • chapter06/gettext.xml

    r2a73970 r50fdfc8  
    7777    <para>Compile the package:</para>
    7878
    79 <screen><userinput remap="make">make</userinput></screen>
     79<screen><userinput remap="make">make BISON_LOCALEDIR=/usr/share/locale</userinput></screen>
     80
     81   <variablelist>
     82      <title>The meaning of the make parameter:</title>
     83
     84      <varlistentry>
     85        <term><parameter>BISON_LOCALEDIR=/usr/share/locale</parameter></term>
     86        <listitem>
     87          <para>Since bison is not yet installed in /usr, configure hardcodes
     88          the directory containing translations for the bison program (the
     89          "locale" directory) as /tools/share/locale. Passing this variable
     90           to make allows overriding the choice made by configure.</para>
     91        </listitem>
     92      </varlistentry>
     93
     94    </variablelist>
    8095
    8196    <para>To test the results (this takes a long time, around 3 SBUs),
Note: See TracChangeset for help on using the changeset viewer.