diff options
author | tnn <tnn> | 2010-03-11 13:18:16 +0000 |
---|---|---|
committer | tnn <tnn> | 2010-03-11 13:18:16 +0000 |
commit | 9ef3a9329c24714b188541bbe4033c3ae34ee63f (patch) | |
tree | e1fd57e590c087ab9a8bf0477305dbc0fa88003f /pkgtools/pbulk | |
parent | ad6e3301d4cacb7f113d0e59dc4617ec4859072b (diff) | |
download | pkgsrc-9ef3a9329c24714b188541bbe4033c3ae34ee63f.tar.gz |
mawk(1) doesn't know how to take length() of an array.
Diffstat (limited to 'pkgtools/pbulk')
-rwxr-xr-x | pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk b/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk index 0710f55031e..476f3aad9b9 100755 --- a/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk +++ b/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk @@ -1,5 +1,5 @@ #!@AWK@ -f -# $NetBSD: create-report-html.awk,v 1.11 2008/06/11 19:27:03 joerg Exp $ +# $NetBSD: create-report-html.awk,v 1.12 2010/03/11 13:18:16 tnn Exp $ # # Copyright (c) 2007, 2008 Joerg Sonnenberger <joerg@NetBSD.org>. # All rights reserved. @@ -53,11 +53,14 @@ function print_failed_log_line(PKGNAME, PHASE, VAR) { print "<td> </td>" > html_report } -function print_pre_fail_reason(PKGNAME, chars, in_quote, in_sep, i) { +function print_pre_fail_reason(PKGNAME, chars, len, in_quote, in_sep, i) { split(pre_fail_reason[PKGNAME], chars, "") in_quote = 0 in_sep = 0 - for (i = 1; i < length(chars); ++i) { + len = 0 + for (i in chars) + len++ + for (i = 1; i < len; ++i) { if (chars[i] == "\"") { in_quote = 1 - in_quote continue |