Michael Schwern wrote:
!Oh, I got it backwards.
!
!--- MM_Unix.pm 2 Sep 2003 20:50:02 -0000 1.186
!+++ MM_Unix.pm 2 Sep 2003 20:50:29 -0000
!@@ -2324,7 +2324,7 @@
! my $thisperl = $self->canonpath($^X);
! $thisperl .= $Config{exe_ext} unless
! # VMS might have a file version # at the end
!- $Is_VMS ? $thisperl =~ m/(;\d+)?$Config{exe_ext}$/i
!+ $Is_VMS ? $thisperl =~ m/$Config{exe_ext}(;\d+)?$/i
! : $thisperl =~ m/$Config{exe_ext}$/i;
That has got it:
There were no "perl 5 not found" messages obtained running "perl
Makefile.PL"
on Pod2VMSHlp 1.02. I also obtained this result (the search command is
similar
to grep -i with the search string pattern and filename arguments switched
compared to grep):
$ search descrip.mms fullperl
FULLPERL = MCR dka200:[user.perl.581rc.perl_20898_root]ndbgperl.exe
FULLPERLRUN = $(FULLPERL)
FULLPERLRUNINST = $(FULLPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)"
$(FULLPERLRUN) "-MExtUtils::Command::MM" "-e"
"test_harness($(TEST_VERBOSE), '$(INST_LIB)', '$(INST_ARCHLIB)')" t/*.t
$(FULLPERLRUN) "$(TESTDB_SW)" "-I$(INST_LIB)" "-I$(INST_ARCHLIB)"
$(TEST_FILE)
Peter Prymmer