summaryrefslogtreecommitdiff
path: root/release-process
diff options
context:
space:
mode:
authorPhil Pennock <pdp@exim.org>2013-10-03 14:50:09 -0400
committerPhil Pennock <pdp@exim.org>2013-10-03 14:50:09 -0400
commit39d16d738122fd008efb87326058dd34cfa6ff1e (patch)
treec5166f4d0755e489a2513e522ed4c29d3be5c95c /release-process
parent9bdd29ad5c5d394229753b114f6f288893f616f4 (diff)
downloadexim4-39d16d738122fd008efb87326058dd34cfa6ff1e.tar.gz
Unbreak HTML build for RC candidates.
The HTML build now uses the website repo, which extracts the version number from the XML (generated from the .xfpt). Meanwhile, commit 2aee48d6 made the version number in the build process dynamic, taking the value from the release script (via an environ variable). This change fixes the invocation to pass the version _without_ an RC suffix to the XML build, letting HTML generation happen.
Diffstat (limited to 'release-process')
-rwxr-xr-xrelease-process/scripts/mk_exim_release.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/release-process/scripts/mk_exim_release.pl b/release-process/scripts/mk_exim_release.pl
index d29770d27..395cdd2b0 100755
--- a/release-process/scripts/mk_exim_release.pl
+++ b/release-process/scripts/mk_exim_release.pl
@@ -191,7 +191,8 @@ sub build_documentation {
my $context = shift;
my $docdir = File::Spec->catdir( $context->{release_tree}, 'doc', 'doc-docbook' );
- system("cd '$docdir' && ./OS-Fixups && make EXIM_VER=$context->{release} everything") == 0
+ # documentation building gets the truncated release, without RC
+ system("cd '$docdir' && ./OS-Fixups && make EXIM_VER=$context->{trelease} everything") == 0
|| croak "Doc build failed";
copy_docbook_files($context);