From 901d35280288a79ee0981348f1928e3c191b3d85 Mon Sep 17 00:00:00 2001 From: calvin Date: Thu, 12 Jan 2006 00:40:39 +0000 Subject: [PATCH] remove nocoding git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3019 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- Makefile | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Makefile b/Makefile index 07e5115a..93e8e954 100644 --- a/Makefile +++ b/Makefile @@ -138,19 +138,3 @@ diff: diff -u linkcheck/$${f}2.py $(PYTHONSVN)/Lib/$${f}.py | less; \ done -# Find Python files without coding line. -.PHONY: nocoding -nocoding: - @for f in `find . -type f -name \*.py`; do \ - if ! grep -q -- "-\*- coding: .* -\*-" $$f; then \ - echo "No coding: $$f"; \ - fi; \ - done - @for f in `find . -type f`; do \ - if head -1 $$f | egrep -q "#!.*python"; then \ - if ! grep -q -- "-\*- coding: .* -\*-" $$f; then \ - echo "No coding: $$f"; \ - fi; \ - fi; \ - done -