diff options
author | rillig <rillig@pkgsrc.org> | 2006-01-24 19:19:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-01-24 19:19:01 +0000 |
commit | b7de3baf8d415a04086d8a832513cefd6e09dcbe (patch) | |
tree | 8a88fdbbbf80de83acd2736126c1ff7ed260c0fa /mk | |
parent | 9cef7b6c0b42f4b1f26c9813c9f0130baa3e8101 (diff) | |
download | pkgsrc-b7de3baf8d415a04086d8a832513cefd6e09dcbe.tar.gz |
In the FTPHOST compatibility mode, there was a slash missing when
constructing REPORTS_DIR out of FTPHOST and FTPURL.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/post-build-conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/post-build-conf b/mk/bulk/post-build-conf index 1fc24b80547..9bd5587c4d7 100644 --- a/mk/bulk/post-build-conf +++ b/mk/bulk/post-build-conf @@ -1,4 +1,4 @@ -# $NetBSD: post-build-conf,v 1.11 2006/01/21 11:29:33 rillig Exp $ +# $NetBSD: post-build-conf,v 1.12 2006/01/24 19:19:01 rillig Exp $ # # This file is included after the build.conf file by the "build" and @@ -163,7 +163,7 @@ check_config_vars() { set,set) pbc_die "FTP and REPORTS_DIR must not be set both.";; set,) - REPORTS_URL="${FTPHOST}"`dirname "${FTPURL}"` + REPORTS_URL="${FTPHOST}"/`dirname "${FTPURL}"` REPORTS_DIR=`dirname "$FTP"` REPORT_BASEDIR=`basename "${FTP}"` REPORT_HTML_FILE=`basename "${REPORT}"` |