diff options
author | Craig A. Berry <craigberry@mac.com> | 2004-04-01 14:19:53 -0600 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-04-02 10:02:06 +0000 |
commit | 88be34b600bd4d61923762dd138558270cb4d3f1 (patch) | |
tree | 39c7afc5e7f5eab044cd7440058a46a0903f5ae2 /vms | |
parent | 86da1428d0acc5b74c6a86a5139bb65b2e487828 (diff) | |
download | perl-88be34b600bd4d61923762dd138558270cb4d3f1.tar.gz |
fix utils install problems on VMS
From: "Craig A. Berry" <craigberry@mac.com>
Message-Id: <406CCDC9.7000500@mac.com>
We were not running utils/instmodsh.PL or utils/xsubpp.PL during
the build, so installperl would not find the generated programs at
install time.
Also fixed several problems with the command definitions for the
utilities
p4raw-id: //depot/perl@22637
Diffstat (limited to 'vms')
-rw-r--r-- | vms/descrip_mms.template | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template index ec14738d77..285494e952 100644 --- a/vms/descrip_mms.template +++ b/vms/descrip_mms.template @@ -334,7 +334,7 @@ LIBPREREQ = $(ARCHDIR)Config.pm [.lib.VMS]Filespec.pm [.lib]DynaLoader.pm [.lib] utils1 = [.lib.pod]perldoc.com [.lib.ExtUtils]Miniperl.pm [.utils]c2ph.com [.utils]h2ph.com utils2 = [.utils]h2xs.com [.utils]libnetcfg.com [.lib]perlbug.com [.lib]perlcc.com [.utils]dprofpp.com -utils3 = [.utils]perlivp.com [.lib]splain.com [.utils]pl2pm.com [.lib.ExtUtils]xsubpp.com +utils3 = [.utils]perlivp.com [.lib]splain.com [.utils]pl2pm.com [.utils]xsubpp.com [.utils]instmodsh.com utils4 = [.utils]enc2xs.com [.utils]piconv.com [.utils]cpan.com [.utils]prove.com .ifdef NOX2P @@ -548,6 +548,9 @@ dynext : $(LIBPREREQ) $(DBG)perlshr$(E) preplibrary [.utils]h2xs.com : [.utils]h2xs.PL $(ARCHDIR)Config.pm $(MINIPERL) $(MMS$SOURCE) +[.utils]instmodsh.com : [.utils]instmodsh.PL $(ARCHDIR)Config.pm + $(MINIPERL) $(MMS$SOURCE) + [.utils]libnetcfg.com : [.utils]libnetcfg.PL $(ARCHDIR)Config.pm $(MINIPERL) $(MMS$SOURCE) @@ -575,8 +578,8 @@ dynext : $(LIBPREREQ) $(DBG)perlshr$(E) preplibrary [.x2p]s2p.com : [.x2p]s2p.PL $(ARCHDIR)Config.pm $(MINIPERL) $(MMS$SOURCE) -[.lib.ExtUtils]xsubpp.com : [.lib.ExtUtils]xsubpp - Copy/NoConfirm/Log $(MMS$SOURCE) [.lib.ExtUtils]xsubpp.com +[.utils]xsubpp.com : [.utils]xsubpp.PL $(ARCHDIR)Config.pm + $(MINIPERL) $(MMS$SOURCE) # Rename catches problem with some DECC versions in which object file is # placed in current default dir, not same one as source file. |