]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - GNUmakefile
make pyflakes run faster and with more alacrity
[tahoe-lafs/tahoe-lafs.git] / GNUmakefile
index 8207c021d7cab9a4f72e46b1ddc32a6d75983270..0150e142f3fdc7c885153c11e2fa2fb9aace7745 100644 (file)
@@ -6,7 +6,13 @@ INSTDIR=$(BASE)/instdir
 PATHSEP=$(shell python -c 'import os ; print os.pathsep')
 TRIALPATH=$(shell which trial.py 2>/dev/null)
 ifeq ($(TRIALPATH),)
-TRIALPATH=$(shell which trial)
+TRIALPATH=$(shell which trial 2>/dev/null)
+endif
+ifeq ($(TRIALPATH),)
+TRIALPATH=$(shell $(PYTHON) -c "import os, sys; print repr(os.path.join(sys.prefix, \"Scripts\", \"trial.py\"))")
+endif
+ifeq ($(TRIALPATH),)
+TRIALPATH=$(shell $(PYTHON) -c "import os, sys; print repr(os.path.join(sys.prefix, \"Scripts\", \"trial\"))")
 endif
 
 EXTRA_SETUP_ARGS=
@@ -35,8 +41,7 @@ else
 PYTHONPATH := "$(INSTDIR)"
 endif
 
-TRIAL=$(PYTHON) -u "$(TRIALPATH)" --reactor=$(REACTOR)
-# $(error $(TRIAL))
+TRIAL=$(PYTHON) -u "$(TRIALPATH)" --rterrors --reactor=$(REACTOR)
 
 show-instdir:
        @echo $(INSTDIR)
@@ -108,7 +113,7 @@ endif
        $(PP) $(PYTHON) misc/figleaf2el.py .figleaf $(INSTDIR)
 
 pyflakes:
-       pyflakes src/allmydata
+       $(PYTHON) -OOu /usr/local/bin/pyflakes src/allmydata
 
 count-lines:
        @echo -n "files: "