summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCraig A. Berry <craigberry@mac.com>2011-06-25 14:31:44 -0500
committerCraig A. Berry <craigberry@mac.com>2011-06-25 14:31:44 -0500
commitff36a2888e53279f5d5e02f24e556b77324953e4 (patch)
tree1c63fceba8005c087ee7b0bd8bed66694d0dd61e
parente4d56f70e121d02d7e331024739007ed16f7381d (diff)
downloadperl-ff36a2888e53279f5d5e02f24e556b77324953e4.tar.gz
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.
-rw-r--r--make_ext.pl2
1 files changed, 0 insertions, 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;