diff options
author | Alex Vandiver <alexmv@mit.edu> | 2008-10-22 01:14:48 -0400 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-12-25 19:31:03 +0100 |
commit | 64ab118f07a11d8be7edc11032b6e3c7b92a547c (patch) | |
tree | 7456154b6abed28c482ff7d004535151953fcc9b | |
parent | 0f04e85fb3fa37b386f7167694f28911146ea2d4 (diff) | |
download | perl-64ab118f07a11d8be7edc11032b6e3c7b92a547c.tar.gz |
Move 'make check' in pods/ to using Pod::Checker
-rw-r--r-- | pod/Makefile.SH | 4 | ||||
-rw-r--r-- | win32/Makefile | 2 | ||||
-rw-r--r-- | win32/makefile.mk | 2 | ||||
-rw-r--r-- | win32/pod.mak | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/pod/Makefile.SH b/pod/Makefile.SH index 74d299f7a1..f1438b97fb 100644 --- a/pod/Makefile.SH +++ b/pod/Makefile.SH @@ -125,9 +125,9 @@ distclean: realclean veryclean: distclean -rm -f *~ *.orig -check: checkpods +check: podchecker @echo "checking..."; \ - $(PERL) -I../lib checkpods $(POD) + $(PERL) -I../lib podchecker $(POD) # Dependencies. pod2latex: pod2latex.PL ../lib/Config.pm diff --git a/win32/Makefile b/win32/Makefile index 10409994af..0331971f8e 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1198,7 +1198,7 @@ distclean: realclean -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API - -cd $(PODDIR) && del /f *.html *.bat checkpods \ + -cd $(PODDIR) && del /f *.html *.bat podchecker \ perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \ perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \ perldelta.pod perldgux.pod perldos.pod perlepoc.pod \ diff --git a/win32/makefile.mk b/win32/makefile.mk index 30f5459856..326bef39e4 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1522,7 +1522,7 @@ distclean: realclean -if exist $(LIBDIR)\threads rmdir /s /q $(LIBDIR)\threads -if exist $(LIBDIR)\XS rmdir /s /q $(LIBDIR)\XS -if exist $(LIBDIR)\Win32API rmdir /s /q $(LIBDIR)\Win32API - -cd $(PODDIR) && del /f *.html *.bat checkpods \ + -cd $(PODDIR) && del /f *.html *.bat podchecker \ perlaix.pod perlamiga.pod perlapollo.pod perlbeos.pod \ perlbs2000.pod perlce.pod perlcn.pod perlcygwin.pod \ perldelta.pod perldgux.pod perldos.pod perlepoc.pod \ diff --git a/win32/pod.mak b/win32/pod.mak index 29330a1b9f..b220c8b957 100644 --- a/win32/pod.mak +++ b/win32/pod.mak @@ -553,9 +553,9 @@ realclean: clean distclean: realclean -check: checkpods +check: podchecker @echo "checking..."; \ - $(PERL) -I../lib checkpods $(POD) + $(PERL) -I../lib podchecker $(POD) # Dependencies. pod2latex: pod2latex.PL ../lib/Config.pm |