In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/ff36a2888e53279f5d5e02f24e556b77324953e4?hp=e4d56f70e121d02d7e331024739007ed16f7381d>
- Log ----------------------------------------------------------------- commit ff36a2888e53279f5d5e02f24e556b77324953e4 Author: Craig A. Berry <[email protected]> Date: Sat Jun 25 14:31:44 2011 -0500 Don't quote target name in make_ext.pl. Even though it's presumably doing case-blind lookups of target names, MMS currently (V3.9-00) falls down hard when passed a target name in lower case. ----------------------------------------------------------------------- Summary of changes: make_ext.pl | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/make_ext.pl b/make_ext.pl index 13a15b4..13f892a 100644 --- a/make_ext.pl +++ b/make_ext.pl @@ -453,11 +453,9 @@ EOS # Give makefile an opportunity to rewrite itself. # reassure users that life goes on... my @args = ('config', @$pass_through); - _quote_args(\@args) if $is_VMS; system(@run, @make, @args) and print "@run @make @args failed, continuing anyway...\n"; } my @targ = ($target, @$pass_through); - _quote_args(\@targ) if $is_VMS; print "Making $target in $ext_dir\n@run @make @targ\n"; my $code = system(@run, @make, @targ); die "Unsuccessful make($ext_dir): code=$code" if $code != 0; -- Perl5 Master Repository
