From 8d020aaba2ecf2d0783a74d3c86ca46a2b96596e Mon Sep 17 00:00:00 2001
From: david-sarah <david-sarah@jacaranda.org>
Date: Sun, 1 Jul 2012 20:17:11 +0000
Subject: [PATCH] Makefile: in check-umids, exclude 'old.py' to avoid false
 positives.

---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 5529c161..cb09747d 100644
--- a/Makefile
+++ b/Makefile
@@ -138,11 +138,11 @@ pyflakes:
 	@echo
 
 check-umids:
-	$(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py'`
+	$(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py' -not -name 'old.py'`
 	@echo
 
 -check-umids:
-	-$(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py'`
+	-$(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py' -not -name 'old.py'`
 	@echo
 
 doc-checks: check-rst
-- 
2.45.2