Browse Source

practracker: add envvar TOR_PRACTRACKER_OPTIONS

We have Makefile.am use this to decide how to invoke practracker on
the Tor source.
Nick Mathewson 4 years ago
parent
commit
223afc2d8f
2 changed files with 5 additions and 1 deletions
  1. 1 1
      Makefile.am
  2. 4 0
      changes/ticket31309

+ 1 - 1
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:

+ 4 - 0
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.