Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/benchmarks/libmicro/files/patch-multiview.sh
16461 views
1
--- multiview.sh.orig 2011-05-11 00:58:23 UTC
2
+++ multiview.sh
3
@@ -38,15 +38,15 @@
4
# the redder the color, the slower the result, the greener the
5
# faster
6
7
-/bin/nawk ' BEGIN {
8
+/usr/bin/awk ' BEGIN {
9
benchmark_count = 0;
10
header_count = 0;
11
}
12
/^#/ {
13
- continue;
14
+ next;
15
}
16
/errors/ {
17
- continue;
18
+ next;
19
}
20
/^\!/ {
21
split($0, A_header, ":");
22
@@ -57,7 +57,7 @@
23
header_names[name] = ++header_count;
24
headers[header_count] = name;
25
}
26
- continue;
27
+ next;
28
}
29
30
{
31
@@ -136,7 +136,7 @@ END {
32
33
for (j = 2; j < ARGC; j++)
34
printf("<td>%s</td>\n", "not computed");
35
- continue;
36
+ next;
37
}
38
39
for (j = 2; j < ARGC; j++) {
40
41