Ignore:
Timestamp:
08/15/2021 05:02:59 PM (3 years ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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:
1dd3b17
Parents:
3a7780b
git-author:
Xi Ruoyao <xry111@…> (08/15/2021 05:02:16 PM)
git-committer:
Xi Ruoyao <xry111@…> (08/15/2021 05:02:59 PM)
Message:

libxslt: simplify the sed by using -r, and add an explanation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/libxslt.xml

    r3a7780b r4dbc40bb  
    138138
    139139<screen><userinput>sed -i s/3000/5000/ libxslt/transform.c doc/xsltproc.{1,xml} &amp;&amp;
    140 sed -i '/max\(Parser\)\?Depth/d' ./tests/fuzz/fuzz.c &amp;&amp;
     140sed -i -r '/max(Parser)?Depth/d' ./tests/fuzz/fuzz.c &amp;&amp;
    141141./configure --prefix=/usr --disable-static --without-python  &amp;&amp;
    142142make</userinput></screen>
     
    169169      <command>sed -i s/3000/5000/ ...</command>: this increases the recursion
    170170      limit in libxslt. This is needed by some packages for their documentation.
     171    </para>
     172
     173    <para>
     174      <command>sed -i -r '/max(Parser)?Depth/d' ...</command>: this works
     175      around an issue running test suite of libxslt with libxml-2.9.12.
    171176    </para>
    172177
Note: See TracChangeset for help on using the changeset viewer.