diff options
author | joerg <joerg> | 2007-07-25 11:07:28 +0000 |
---|---|---|
committer | joerg <joerg> | 2007-07-25 11:07:28 +0000 |
commit | 31b16e8d45093bee576f998d25ba4c0228319144 (patch) | |
tree | ebc2ba07aaf5d8a037e89a79b6f048302caf75a3 | |
parent | fe9b5154d3bc12943bff2fb93f37a9a6263640f0 (diff) | |
download | pkgsrc-31b16e8d45093bee576f998d25ba4c0228319144.tar.gz |
Remove an additional ) and correct the assignment of a variable.
Bump to 0.8.
-rw-r--r-- | pkgtools/pbulk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk | 4 | ||||
-rwxr-xr-x | pkgtools/pbulk/files/pbulk/scripts/report | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/pbulk/Makefile b/pkgtools/pbulk/Makefile index 30b2a49ecc2..0e0cde6a5c8 100644 --- a/pkgtools/pbulk/Makefile +++ b/pkgtools/pbulk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2007/07/20 19:39:33 joerg Exp $ +# $NetBSD: Makefile,v 1.10 2007/07/25 11:07:28 joerg Exp $ -DISTNAME= pbulk-0.7 +DISTNAME= pbulk-0.8 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk b/pkgtools/pbulk/files/pbulk/scripts/create-report-html.awk index 9afc67600ef..db9639942e0 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.4 2007/07/20 19:39:34 joerg Exp $ +# $NetBSD: create-report-html.awk,v 1.5 2007/07/25 11:07:28 joerg Exp $ # # Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>. # All rights reserved. @@ -165,7 +165,7 @@ BEGIN { print " <body>" > html_report printf(" <h1> pkgsrc bulk build for %s</h1>\n", pkgsrc_platform) > html_report printf(" <h2> Build start: %s</h2>\n", pkgsrc_build_start_iso) > html_report - printf(" <h2> Build end: %s</h2>\n", pkgsrc_build_end_iso)) > html_report + printf(" <h2> Build end: %s</h2>\n", pkgsrc_build_end_iso) > html_report print " <hr />" > html_report all_pkgs = pkgs_done + pkgs_failed + pkgs_prefailed + pkgs_indirect_failed + pkgs_indirect_prefailed diff --git a/pkgtools/pbulk/files/pbulk/scripts/report b/pkgtools/pbulk/files/pbulk/scripts/report index 079dbecb2d1..37495e7effc 100755 --- a/pkgtools/pbulk/files/pbulk/scripts/report +++ b/pkgtools/pbulk/files/pbulk/scripts/report @@ -1,5 +1,5 @@ #!@SH@ -# $NetBSD: report,v 1.3 2007/07/20 19:39:34 joerg Exp $ +# $NetBSD: report,v 1.4 2007/07/25 11:07:28 joerg Exp $ # # Copyright (c) 2007 Joerg Sonnenberger <joerg@NetBSD.org>. # All rights reserved. @@ -55,7 +55,7 @@ while read line; do build_start_iso=${line#BUILD_START_ISO=} ;; BUILD_START_DIR=*) - build_start_iso=${line#BUILD_START_DIR=} + build_start_dir=${line#BUILD_START_DIR=} ;; PLATFORM=*) platform=${line#PLATFORM=} |