diff options
author | Craig A. Berry <craigberry@mac.com> | 2012-01-04 19:07:59 -0600 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2012-01-04 19:07:59 -0600 |
commit | 5ea6993dc3abe359587df7b497c38e981f4695cd (patch) | |
tree | e32006dea9edf2ecc5ad46bc5f18d6d139b61950 | |
parent | 990c89d7f48761c1d0383d6378653b6b1fe2c99c (diff) | |
download | perl-5ea6993dc3abe359587df7b497c38e981f4695cd.tar.gz |
miniperl can no longer run installperl.
installperl now requires Porting/pod_lib.pl, which uses Digest::MD5,
which means we need something that can do dynamic loading (or has
extensions statically linked in). But it doesn't really matter
because presumably we wouldn't be installing Perl if we hadn't
built it, so use the perl we've built rather than miniperl.
-rw-r--r-- | vms/descrip_mms.template | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template index c90bc45a10..8c118078f2 100644 --- a/vms/descrip_mms.template +++ b/vms/descrip_mms.template @@ -656,10 +656,11 @@ minitest : $(MINITEST_EXE) [.lib.VMS]Filespec.pm unidatafiles.ts # install ought not need a source, but it doesn't work if one's not # there. Go figure... -install : $(MINIPERL_EXE) +install : $(PERL_EXE) @ @perl_setup.com If F$TrnLnm("Sys") .nes. "" Then Deass SYS - $(MINIPERL) installperl + @ define/user_mode $(DBG)PERLSHR SYS$DISK:[]$(DBG)perlshr$(E) + $(PERL) installperl archify : all @ Write Sys$Output "Moving files to architecture-specific locations for $(ARCHNAME)" |