diff options
-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 |