Changeset 2cbfee09


Ignore:
Timestamp:
01/26/2015 08:31:43 PM (9 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
b37b932
Parents:
78fdc22
Message:

Build xindy in the POSIX locale, thanks to Pierre and Bruce for help in debugging what I miscategorised as an i686 problem.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@15397 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r78fdc22 r2cbfee09  
    4949      <itemizedlist>
    5050        <listitem>
     51          <para>[ken] - Use the POSIX locale to build xindy. Fixes
     52          <ulink url="&blfs-ticket-root;5926">#5926</ulink>.</para>
     53        </listitem>
     54        <listitem>
    5155          <para>[pierre] - Update to OpenJDK-1.8.0.31. Fixes
    5256          <ulink url="&blfs-ticket-root;6062">#6062</ulink>.</para>
  • pst/typesetting/xindy.xml

    r78fdc22 r2cbfee09  
    3939    </para>
    4040
    41     <note>
    42       <para>
    43         At the moment, this works on x86_64 but does not work on 32-bit x86.
    44         Help in debugging this will be welcomed.
    45       </para>
    46     </note>
    47 
    4841    &lfs76_checked;
    4942
     
    10497
    10598<screen><userinput>export TEXARCH=$(uname -m | sed -e 's/i.86/i386/' -e 's/$/-linux/') &amp;&amp;
     99
     100SAVE_LC_ALL=$LC_ALL &amp;&amp;
     101LC_ALL=POSIX &amp;&amp;
    106102
    107103./configure --prefix=/opt/texlive/&texlive-year;              \
     
    111107            --libdir=/opt/texlive/&texlive-year;/texmf-dist   \
    112108            --mandir=/opt/texlive/&texlive-year;/texmf-dist/doc/man &amp;&amp;
    113 make</userinput></screen>
     109make &amp;&amp;
     110LC_ALL=$SAVE_LC_ALL &amp;&amp; unset SAVE_LC_ALL
     111</userinput></screen>
    114112
    115113    <para>
     
    127125  <sect2 role="commands">
    128126    <title>Command Explanations</title>
     127
     128    <para>
     129      <parameter>SAVE_LC_ALL=...</parameter>: with the current version of
     130      <application>coreutils</application> it is essential to build
     131      <application>xindy</application> in the POSIX (or C) locale because in a
     132      UTF-8 locale the file <filename>latin.xdy</filename> will contain only a
     133      heading and then a line '<literal>Binary file (standard input)
     134      matches</literal>' instead of the many lines of
     135      <application>lisp</application> merge-rule commands it ought to contain.
     136    </para>
    129137
    130138    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
Note: See TracChangeset for help on using the changeset viewer.