Changeset 9e7816b


Ignore:
Timestamp:
09/06/2014 07:57:00 PM (10 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.6, 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, krejzi/svn, 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:
ec10720
Parents:
76713fc
Message:

Forgot to fix firefox-32.0 for i686 builds.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xsoft/graphweb/firefox.xml

    r76713fc r9e7816b  
    243243      <envar>SHELL=/bin/sh</envar> to the first make command below.
    244244    </para></note>
    245      
    246 <screen><userinput>make -f client.mk</userinput></screen>
     245
     246<screen><userinput>test $(uname -m) = "i686" &amp;&amp; sed -i 's/enable-optimize/disable-optimize/' mozconfig || true &amp;&amp;
     247make -f client.mk</userinput></screen>
    247248
    248249    <para>
     
    263264  <sect2 role="commands">
    264265    <title>Command Explanations</title>
     266
     267    <para>
     268      <command>test $(uname -m) = "i686" &amp;&amp; sed ...</command>:
     269      On this version of firefox, an old bug has reappeared in 32-bit builds.
     270      With optimization, the install fails with a Python error.  This
     271      command will fix i686 builds and preserve the optimization on x86_64.
     272    </para>
    265273
    266274    <para>
Note: See TracChangeset for help on using the changeset viewer.