Changeset 07067aa


Ignore:
Timestamp:
07/20/2023 01:27:12 AM (10 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
12.0, 12.1, ken/TL2024, ken/tuningfonts, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18
Children:
d18a047b
Parents:
ac7dd639
git-author:
Xi Ruoyao <xry111@…> (07/20/2023 01:23:48 AM)
git-committer:
Xi Ruoyao <xry111@…> (07/20/2023 01:27:12 AM)
Message:

qt5-alternate: sed -ir should be sed -i -r

In the regex we use | which is extended regex. So the -r (or -E,
or --regexp-exteneded) option is needed. We cannot squash them into
-ir because -i[PREFIX] has a special meaning: make a backup named
tempconf[PREIX].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/lib/qt5-alternate.xml

    rac7dd639 r07067aa  
    246246
    247247<screen><userinput>ls -Fd qt* | grep / | sed 's/^/-skip /;s@/@@' > tempconf &amp;&amp;
    248 sed -ir '/base|tools|x11extras|svg|declarative|wayland/d' tempconf</userinput></screen>
     248sed -i -r '/base|tools|x11extras|svg|declarative|wayland/d' tempconf</userinput></screen>
    249249
    250250    <para>
Note: See TracChangeset for help on using the changeset viewer.