From ff36a2888e53279f5d5e02f24e556b77324953e4 Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Sat, 25 Jun 2011 14:31:44 -0500 Subject: 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. --- make_ext.pl | 2 -- 1 file changed, 2 deletions(-) diff --git a/make_ext.pl b/make_ext.pl index 13a15b4601..13f892a36d 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; -- cgit v1.2.1