Unbreak HTML build for RC candidates.
authorPhil Pennock <pdp@exim.org>
Thu, 3 Oct 2013 18:50:09 +0000 (14:50 -0400)
committerPhil Pennock <pdp@exim.org>
Thu, 3 Oct 2013 18:50:09 +0000 (14:50 -0400)
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.

release-process/scripts/mk_exim_release.pl

index d29770d2745d7d7c0e70c58e2ff60da0a6b39bc7..395cdd2b0eae6043dd3aa0d6ff603d83c3ce0577 100755 (executable)
@@ -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);