diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-21 21:10:50 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-21 21:10:50 +0000 |
commit | 47ec63d06651617a148bb474657949bf1cf43062 (patch) | |
tree | 1baf2296c0aab3fc7ba3aa4fe1a373733b516f09 /Makefile.SH | |
parent | 5350a4e5afd114d2b90f90330f8524ae889fdb03 (diff) | |
download | perl-47ec63d06651617a148bb474657949bf1cf43062.tar.gz |
Add an option --ignore to installhtml
and use it to avoid to install doc in Porting/.
Skip also test modules.
p4raw-id: //depot/perl@25560
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.SH b/Makefile.SH index b695a8c8e9..d19e36b6d1 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -858,13 +858,14 @@ install.man: all installman # Eventually Configure could ask for some of these values. install.html: all installhtml -@test -f README.vms && cd vms && $(LNS) ../README.vms README_vms.pod && cd .. - $(LDLIBPTH) ./perl installhtml \ + $(LDLIBPTH) ./perl installhtml \ --podroot=. --podpath=. --recurse \ - --htmldir=$(privlib)/html \ - --htmlroot=$(privlib)/html \ + --htmldir=$(privlib)/html \ + --htmlroot=$(privlib)/html \ --splithead=pod/perlipc \ --splititem=pod/perlfunc \ --libpods=perlfunc:perlguts:perlvar:perlrun:perlop \ + --ignore=Porting/Maintainers.pm,Porting/patching.pod,Porting/pumpkin.pod,Porting/repository.pod \ --verbose |