Skip to content

Commit

Permalink
Fixed RT#45462: Compat.pm needs to reference 'Build.com' on VMS
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.perl.org/modules/Module-Build/trunk@12721 50811bd7-b8ce-0310-adc1-d9db26280581
  • Loading branch information
xdg committed Apr 28, 2009
1 parent 65963c4 commit 8aaa250
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Revision history for Perl extension Module::Build.
0.32_02 -

Bug-fixes:
- Fixed RT#45462: Compat.pm needs to reference 'Build.com' on VMS
[patch from John Malmberg]
- Fixed RT#45461: ext.t on VMS [patch from John Malmberg]
- Fixed RT#43861: Module::Build::PPMMaker has broken PPD name
versioning for v5.10+
Expand Down
4 changes: 3 additions & 1 deletion lib/Module/Build/Compat.pm
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,9 @@ EOF
eval "use Module::Build::Compat 0.02; 1" or die $@;
%s
Module::Build::Compat->run_build_pl(args => \@ARGV);
exit(0) unless(-e 'Build'); # cpantesters convention
my $build_script = 'Build';
$build_script .= '.com' if $^O eq 'VMS';
exit(0) unless(-e $build_script); # cpantesters convention
require %s;
Module::Build::Compat->write_makefile(build_class => '%s');
EOF
Expand Down

0 comments on commit 8aaa250

Please sign in to comment.