Fix sed in mozilla apps

Sorry for forgetting the "xargs"
This commit is contained in:
Pierre Labastie 2022-11-04 15:26:18 +01:00
parent 8c973e5902
commit d7ba6b4ddd
4 changed files with 4 additions and 4 deletions

View File

@ -187,7 +187,7 @@ esac</userinput></screen>
in python-3.11:
</para>
<screen><userinput>grep -rl \"rU\" | sed -i 's/"rU"/"r"/'</userinput></screen>
<screen><userinput>grep -rl \"rU\" | xargs sed -i 's/"rU"/"r"/'</userinput></screen>
<para>
Then run:

View File

@ -361,7 +361,7 @@ echo "613364a7-9418-4c86-bcee-57e32fd70c23" > mozilla-key</userinput></screen>
in python-3.11:
</para>
<screen><userinput>grep -rl \"rU\" | sed -i 's/"rU"/"r"/'</userinput></screen>
<screen><userinput>grep -rl \"rU\" | xargs sed -i 's/"rU"/"r"/'</userinput></screen>
<para>
Now invoke the Python <command>mach</command> script to compile the package.

View File

@ -274,7 +274,7 @@ EOF</userinput></screen>
in python-3.11:
</para>
<screen><userinput>grep -rl \"rU\" | sed -i 's/"rU"/"r"/'</userinput></screen>
<screen><userinput>grep -rl \"rU\" | xargs sed -i 's/"rU"/"r"/'</userinput></screen>
<para>
Compile <application>SeaMonkey</application> by running the following

View File

@ -252,7 +252,7 @@ esac</userinput></screen>
in python-3.11:
</para>
<screen><userinput>grep -rl \"rU\" | sed -i 's/"rU"/"r"/'</userinput></screen>
<screen><userinput>grep -rl \"rU\" | xargs sed -i 's/"rU"/"r"/'</userinput></screen>
<screen><userinput>export MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE=none &amp;&amp;
export MOZBUILD_STATE_PATH=./mozbuild &amp;&amp;