diff options
author | Nigel Metheringham <nigel@exim.org> | 2010-12-17 13:03:21 +0000 |
---|---|---|
committer | Nigel Metheringham <nigel@exim.org> | 2010-12-17 13:03:21 +0000 |
commit | 50023e05517902980bca54c1bae98e6647243457 (patch) | |
tree | 947ac9cbef75792e527f6299dc7dfa9a860a1559 /release-process | |
parent | 8f29c95072dea6fbd8476afa3c990de62b40fafd (diff) |
Stripped old HTML doc generation - will add new HTML gen soon
Diffstat (limited to 'release-process')
-rwxr-xr-x | release-process/scripts/mk_exim_release.pl | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/release-process/scripts/mk_exim_release.pl b/release-process/scripts/mk_exim_release.pl index f062baba5..eea116917 100755 --- a/release-process/scripts/mk_exim_release.pl +++ b/release-process/scripts/mk_exim_release.pl @@ -160,23 +160,6 @@ sub build_pspdfinfo_directory { # ------------------------------------------------------------------ -sub build_html_directory { - my $context = shift; - - my $dir = sprintf( 'exim-%s-%s', 'html', $context->{release} ); - my $target = File::Spec->catdir( $dir, 'doc', 'html' ); - mkpath( $target, { verbose => ( $verbose || $debug ) } ); - - # move documents across - move( File::Spec->catdir( 'doc/doc-docbook', 'spec_html' ), File::Spec->catdir( $target, 'spec_html' ) ); - foreach my $file ( glob( File::Spec->catfile( 'doc/doc-docbook', '*.html' ) ) ) { - my $fn = ( File::Spec->splitpath($file) )[2]; - move( $file, File::Spec->catfile( $target, $fn ) ); - } -} - -# ------------------------------------------------------------------ - sub build_main_package_directory { my $context = shift; @@ -200,7 +183,6 @@ sub build_package_directories { build_main_package_directory($context); build_pspdfinfo_directory($context); - build_html_directory($context); } # ------------------------------------------------------------------ |