tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 223afc2d8f4fd48445c3dc30168a753075ba4959
parent e57209dc32996d27fa058125d43391b2bd423826
Author: Nick Mathewson <nickm@torproject.org>
Date:   Thu,  1 Aug 2019 12:57:26 -0400

practracker: add envvar TOR_PRACTRACKER_OPTIONS

We have Makefile.am use this to decide how to invoke practracker on
the Tor source.

Diffstat:
MMakefile.am | 2+-
Achanges/ticket31309 | 4++++
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am @@ -371,7 +371,7 @@ endif check-best-practices: if USEPYTHON - @$(PYTHON) $(top_srcdir)/scripts/maint/practracker/practracker.py $(top_srcdir) + @$(PYTHON) $(top_srcdir)/scripts/maint/practracker/practracker.py $(top_srcdir) $(TOR_PRACTRACKER_OPTIONS) endif practracker-regen: diff --git a/changes/ticket31309 b/changes/ticket31309 @@ -0,0 +1,4 @@ + o Minor features (best practices tracker): + - Add a TOR_PRACTRACKER_OPTIONS variable for passing arguments + to practracker from the environment. We may want this for + continuous integration. Closes ticket 31309.