summaryrefslogtreecommitdiff
path: root/pkgtools/pbulk
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2007-07-07 13:54:36 +0000
committerwiz <wiz@pkgsrc.org>2007-07-07 13:54:36 +0000
commit2ba0c80af0f23b0b80447433ff8826fefa63383e (patch)
tree9574ed1a44604ace082eeccebf186ad825dd70ef /pkgtools/pbulk
parent40071f7ab6a6a0a361bc39780cf1e78baa27fa0b (diff)
downloadpkgsrc-2ba0c80af0f23b0b80447433ff8826fefa63383e.tar.gz
Fix a typo. Improve heading for top ten.
Diffstat (limited to 'pkgtools/pbulk')
-rw-r--r--pkgtools/pbulk/files/pbulk/pbuild/jobs.c4
-rwxr-xr-xpkgtools/pbulk/files/pbulk/scripts/create-report-html.awk6
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pbulk/files/pbulk/pbuild/jobs.c b/pkgtools/pbulk/files/pbulk/pbuild/jobs.c
index e15f50dc789..5e8c6b6a621 100644
--- a/pkgtools/pbulk/files/pbulk/pbuild/jobs.c
+++ b/pkgtools/pbulk/files/pbulk/pbuild/jobs.c
@@ -1,4 +1,4 @@
-/* $NetBSD: jobs.c,v 1.2 2007/06/25 21:38:44 joerg Exp $ */
+/* $NetBSD: jobs.c,v 1.3 2007/07/07 13:54:36 wiz Exp $ */
/*-
* Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
@@ -312,7 +312,7 @@ mark_initial(void)
}
}
- mark_initial_state(log_success, JOB_DONE, "succesful");
+ mark_initial_state(log_success, JOB_DONE, "successful");
mark_initial_state(log_failed, JOB_FAILED, "failing");
}
diff --git a/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk b/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk
index 37046a6b493..4b2d3f00273 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.2 2007/06/29 22:43:26 joerg Exp $
+# $NetBSD: create-report-html.awk,v 1.3 2007/07/07 13:54:36 wiz Exp $
#
# Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>.
# All rights reserved.
@@ -194,7 +194,7 @@ BEGIN {
}
sort(top_count, sorted_top_count, "-rn")
if (sorted_top_count[0]) {
- print " <h2> Most offending build failures </h2>" > html_report
+ print " <h2>Packages causing the most breakage</h2>" > html_report
print " <table>" > html_report
print " <tr>" > html_report
print " <th> Location </th>" > html_report
@@ -214,7 +214,7 @@ BEGIN {
print " <hr />" > html_report
}
- print " <h2> All unsuccesful builds </h2>" > html_report
+ print " <h2> All unsuccessful builds </h2>" > html_report
print " <table>" > html_report
print " <tr>" > html_report