wok view cookutils/stuff/avoid-gawk-warning.patch @ rev 25017

updated openjpeg, openjpeg-dev and openjpeg-tools (1.5.0 -> 1.5.2)
author Hans-G?nter Theisgen
date Wed May 18 06:55:41 2022 +0100 (2022-05-18)
parents
children
line source
1 gawk raise a warning with some scripts.
3 --- a/modules/compressor
4 +++ b/modules/compressor
5 @@ -376,7 +376,7 @@
6 echo >> "$tmpfile"
8 # get Plural-Forms
9 - awk '
10 + busybox awk '
11 BEGIN { skip = ""; }
12 {
13 if (! skip) {
14 @@ -394,7 +394,7 @@
15 fi
17 # main
18 - awk -v pf="$(cat "$tmpfile.pf")" '
19 + busybox awk -v pf="$(cat "$tmpfile.pf")" '
20 function clean() {
21 mode = msgctxt = msgid = msgid_plural = msgstr = msgstr0 = msgstr1 = msgstr2 = msgstr3 = msgstr4 = msgstr5 = "";
22 }