From 88a32ce5052225c9b835613136296b0acb0a4e8e Mon Sep 17 00:00:00 2001 From: calvin Date: Fri, 14 Dec 2007 16:41:19 +0000 Subject: [PATCH] add .po format check; use py24-tabnanny script for tab checking git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3642 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0575273c..958d5744 100644 --- a/Makefile +++ b/Makefile @@ -116,12 +116,15 @@ dist-stamp: changelog $(MAKE) dist touch $@ +# The check programs used here are mostly local scripts on my private system. +# So for other developers there is no need to execute this target. .PHONY: check check: py-verify $(PYFILES) py-find-nocoding $(PYFILES) check-nosvneolstyle - python2.4 /usr/lib/python2.4/tabnanny.py $(PYFILES) + check-pofiles + py24-tabnanny $(PYFILES)