Author: kwilliams
Date: Thu Apr 20 11:06:50 2006
New Revision: 5945
Modified:
Module-Build/branches/release-0_26_branch/Changes
Module-Build/branches/release-0_26_branch/lib/Module/Build/Base.pm
Log:
Remove errant File::Spec::Unix references in building HTML pages
Modified: Module-Build/branches/release-0_26_branch/Changes
==============================================================================
--- Module-Build/branches/release-0_26_branch/Changes (original)
+++ Module-Build/branches/release-0_26_branch/Changes Thu Apr 20 11:06:50 2006
@@ -9,6 +9,10 @@
'passthrough' Makefile.PL check properly whether Module::Build was
successfully installed.
+ - Integrated a Windows fix from the mainline branch that corrects an
+ error building HTML manual pages.
+ (http://rt.cpan.org/Public/Bug/Display.html?id=18076)
+
0.2612 Thu Mar 2 22:27:37 CST 2006
- We now use File::Spec->tmpdir rather than the local _build/
Modified: Module-Build/branches/release-0_26_branch/lib/Module/Build/Base.pm
==============================================================================
--- Module-Build/branches/release-0_26_branch/lib/Module/Build/Base.pm (original)
+++ Module-Build/branches/release-0_26_branch/lib/Module/Build/Base.pm Thu Apr 20 11:06:50 2006
@@ -1809,9 +1809,9 @@
my @dirs = File::Spec->splitdir( File::Spec->canonpath( $path ) );
pop( @dirs ) if $dirs[-1] eq File::Spec->curdir;
- my $fulldir = File::Spec::Unix->catfile($htmldir, @rootdirs, @dirs);
- my $outfile = File::Spec::Unix->catfile($fulldir, $name . '.html');
- my $infile = File::Spec::Unix->abs2rel($pod);
+ my $fulldir = File::Spec->catfile($htmldir, @rootdirs, @dirs);
+ my $outfile = File::Spec->catfile($fulldir, $name . '.html');
+ my $infile = File::Spec->abs2rel($pod);
return if $self->up_to_date($infile, $outfile);
|