diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-06-13 11:46:29 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-06-13 11:47:11 +0100 |
commit | 6e2c892858f0153d478baaafedb3170a7306bd0a (patch) | |
tree | ccbc330d4f444b75a773dac4a93db8505c49685d /vms | |
parent | 291c64f4c0f01fdef1479446cf0ba1ec265227d5 (diff) | |
download | perl-6e2c892858f0153d478baaafedb3170a7306bd0a.tar.gz |
Generate perlmodlib.pod at build time, instead of shipping it.
Diffstat (limited to 'vms')
-rw-r--r-- | vms/descrip_mms.template | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template index f50745726a..d7d06158b4 100644 --- a/vms/descrip_mms.template +++ b/vms/descrip_mms.template @@ -440,10 +440,13 @@ pod = $(pod0) $(pod1) $(pod2) $(pod3) $(pod4) $(pod5) $(pod6) $(pod7) $(pod8) $( [.pod]perlapi.pod : embed.fnc autodoc.pl $(MINIPERL_EXE) $(MINIPERL) autodoc.pl +[.pod]perlmodlib.pod : [.pod]perlmodlib.pl MANIFEST $(MINIPERL_EXE) + $(MINIPERL) [.pod]perlmodlib.pl "-q" + [.pod]perlintern.pod : embed.fnc autodoc.pl $(MINIPERL_EXE) $(MINIPERL) autodoc.pl -[.pod]perltoc.pod : [.pod]perldelta.pod [.pod]perlapi.pod [.pod]perlintern.pod extra.pods $(PERL_EXE) +[.pod]perltoc.pod : [.pod]perldelta.pod [.pod]perlapi.pod [.pod]perlintern.pod [.pod]perlmodlib.pod extra.pods $(PERL_EXE) @ define/user_mode $(DBG)PERLSHR SYS$DISK:[]$(DBG)perlshr$(E) $(PERL) [.pod]buildtoc "-q" "--build-toc" @@ -1873,6 +1876,7 @@ clean : tidy cleantest cleanup_unpacked_files - If F$Search("[.pod]perlapi.pod").nes."" Then Delete/NoConfirm/Log [.pod]perlapi.pod;* - If F$Search("[.pod]perldelta.pod").nes."" Then Delete/NoConfirm/Log [.pod]perldelta.pod;* - If F$Search("[.pod]perlintern.pod").nes."" Then Delete/NoConfirm/Log [.pod]perlintern.pod;* + - If F$Search("[.pod]perlmodlib.pod").nes."" Then Delete/NoConfirm/Log [.pod]perlmodlib.pod;* - If F$Search("[.pod]perltoc.pod").nes."" Then Delete/NoConfirm/Log [.pod]perltoc.pod;* - @extra_pods CLEAN - If F$Search("unpushed.h").nes."" Then Delete/NoConfirm/Log unpushed.h;* |