From 90b1c6b1b39d88af1370d885e6ec21af3e3012e3 Mon Sep 17 00:00:00 2001 From: John Dennis Date: Wed, 7 Dec 2011 19:04:55 -0500 Subject: ticket 2172 - If "make rpms" fails so will the next make If "make rpms" fails it doesn't clean up the rpmbuild directory it created. The next make-lint will also fail because it finds files under rpmbuild. make-lint is invoked by "make rpms", a vicous cycle. The patch contains two sets of changes Include "rpmbuild" in the IGNORE_PATHS list of make-lint. Fix the Makefile to use $(RPMBUILD) consistently, there were a number of hardcoded uses of "rpmbuild" as a direcotry. --- make-lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'make-lint') diff --git a/make-lint b/make-lint index 83025d84..ef241497 100755 --- a/make-lint +++ b/make-lint @@ -37,7 +37,7 @@ except ImportError: # File names to ignore when searching for python source files IGNORE_FILES = ('.*', '*~', '*.in', '*.pyc', '*.pyo') -IGNORE_PATHS = ('build', 'dist', 'install/po/test_i18n.py', 'lite-server.py', +IGNORE_PATHS = ('build', 'rpmbuild', 'dist', 'install/po/test_i18n.py', 'lite-server.py', 'make-lint', 'make-test', 'tests') class IPATypeChecker(TypeChecker): -- cgit