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

updated gvim 8.2 -> 9.0.0133 again
author Hans-G?nter Theisgen
date Thu Feb 23 11:06:30 2023 +0100 (16 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 }