X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/9d0311ffda3349b05b57802e2031c6dc94bc20ae..exim-4_82_RC2:/release-process/scripts/mk_exim_release.pl diff --git a/release-process/scripts/mk_exim_release.pl b/release-process/scripts/mk_exim_release.pl index 46d63e516..d29770d27 100755 --- a/release-process/scripts/mk_exim_release.pl +++ b/release-process/scripts/mk_exim_release.pl @@ -146,8 +146,11 @@ sub build_html_documentation { mkdir($dir); - my @cmd = - ( $genpath, '--spec', $spec, '--filter', $filter, '--latest', $context->{trelease}, '--tmpl', $templates, '--docroot', $dir ); + my @cmd = ( + $genpath, '--spec', $spec, '--filter', + $filter, '--latest', $context->{trelease}, '--tmpl', + $templates, '--docroot', $dir, '--localstatic' + ); print "Executing ", join( ' ', @cmd ), "\n"; system(@cmd); @@ -188,7 +191,7 @@ sub build_documentation { my $context = shift; my $docdir = File::Spec->catdir( $context->{release_tree}, 'doc', 'doc-docbook' ); - system("cd '$docdir' && ./OS-Fixups && make everything") == 0 + system("cd '$docdir' && ./OS-Fixups && make EXIM_VER=$context->{release} everything") == 0 || croak "Doc build failed"; copy_docbook_files($context); @@ -357,7 +360,7 @@ sub create_tar_files { compressors => { gzip => 1, bzip2 => 1, - lzip => 1, + lzip => 0, }, }; my $delete; @@ -435,9 +438,9 @@ Use to override the path to the tar command; without this, will search for gtar, and if not found use tar. Need GNU tar for lzip, unless --no-lzip is used. -=item B<--no-lzip> +=item B<--lzip> -Do not build the lzip tarballs. +Build the lzip tarballs. =item B<--verbose>