summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-05-01 16:31:00 +0300
committerLars Wirzenius <liw@liw.fi>2015-05-01 16:31:00 +0300
commit25c1a5705a8a665660d575a2b46f8378e2d92b5d (patch)
tree51e3c197cfef4cae16399369e43aba543ff6efbe /Makefile
parent61830c315a9b051a8ab46da487792d0c1e90ec5d (diff)
downloadsummain-25c1a5705a8a665660d575a2b46f8378e2d92b5d.tar.gz
Whitespace and pylint fixes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8a224fe..01d0a98 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,11 @@ check:
rm -f .coverage
cmdtest tests
pep8 summain summainlib.py summainlib_tests.py
- pylint --rcfile=pylint.conf summain summainlib.py summainlib_tests.py
+ if command -v pylint && pylint --version | grep '^pylint [1-9]'; \
+ then \
+ PYTHONPATH=. pylint --rcfile=pylint.conf \
+ summain summainlib.py summainlib_tests.py; \
+ fi
clean:
python setup.py clean