This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Don't quote target name in make_ext.pl.
authorCraig A. Berry <craigberry@mac.com>
Sat, 25 Jun 2011 19:31:44 +0000 (14:31 -0500)
committerCraig A. Berry <craigberry@mac.com>
Sat, 25 Jun 2011 19:31:44 +0000 (14:31 -0500)
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.

make_ext.pl

index 13a15b4..13f892a 100644 (file)
@@ -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;