Changeset b4079e2 for xsoft/graphweb


Ignore:
Timestamp:
02/21/2024 04:14:43 AM (3 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.1, ken/TL2024, lazarus, trunk, xry111/llvm18
Children:
c25d1eb
Parents:
80f781e
Message:

Rearrange and explain the first sed construct in Firefox.

The sed adds 5 identical entries to a c++ array.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • xsoft/graphweb/firefox.xml

    r80f781e rb4079e2  
    192192    <title>Installation of Firefox</title>
    193193
    194     <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=1859752
    195          https://hg.mozilla.org/try/rev/d5f3b0c4f08a -->
    196     <para>
    197       If building with system ICU, adapt the line break mapping for ICU
    198       74 or later:
    199     </para>
    200 
    201 <screen><userinput>(for i in {43..47}; do
    202    sed '/ZWJ/s/}/,CLASS_CHARACTER&amp;/' -i intl/lwbrk/LineBreaker.cpp || exit $?
    203  done)</userinput></screen>
    204 
    205194    <para>
    206195      The configuration of <application>Firefox</application> is accomplished
     
    314303mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/firefox-build-dir</literal>
    315304EOF</userinput></screen>
     305
     306    <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=1859752
     307         https://hg.mozilla.org/try/rev/d5f3b0c4f08a -->
     308    <para>
     309      If building with system ICU, adapt the line break mapping for ICU
     310      74 or later.  This construct adds five entries to a c++ array.
     311    </para>
     312
     313<screen><userinput>for i in {43..47}; do
     314   sed -i '/ZWJ/s/}/,CLASS_CHARACTER&amp;/' intl/lwbrk/LineBreaker.cpp
     315done</userinput></screen>
    316316
    317317    <para>
Note: See TracChangeset for help on using the changeset viewer.