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

updated python-formalchemy (1.5.5 -> 1.5.6)
author Hans-G?nter Theisgen
date Fri Jul 01 17:52:21 2022 +0100 (23 months ago)
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 }