]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
make dist: only include files from practracker dir intentionally.
authorNick Mathewson <nickm@torproject.org>
Thu, 1 Aug 2019 17:45:45 +0000 (13:45 -0400)
committerNick Mathewson <nickm@torproject.org>
Thu, 1 Aug 2019 17:47:05 +0000 (13:47 -0400)
Previously, we included temporary files and whatnot, which is not
good.

Fixes bug 31311; bugfix on 0.4.1.1-alpha.

Makefile.am
changes/ticket31311 [new file with mode: 0644]

index 3f3de34ceb0aed7fbb91cde4c7e2821604daa693..10bd4b45c29f149271b4dafcc2dbc8ebf9c69041 100644 (file)
@@ -165,9 +165,12 @@ EXTRA_DIST+= \
        README                                          \
        ReleaseNotes                                    \
        scripts/maint/checkIncludes.py                  \
-       scripts/maint/checkSpace.pl \
-       scripts/maint/practracker
-
+       scripts/maint/checkSpace.pl                     \
+       scripts/maint/practracker/exceptions.txt        \
+       scripts/maint/practracker/metrics.py            \
+       scripts/maint/practracker/practracker.py        \
+       scripts/maint/practracker/problem.py            \
+       scripts/maint/practracker/util.py
 
 ## This tells etags how to find mockable function definitions.
 AM_ETAGSFLAGS=--regex='{c}/MOCK_IMPL([^,]+,\W*\([a-zA-Z0-9_]+\)\W*,/\1/s'
diff --git a/changes/ticket31311 b/changes/ticket31311
new file mode 100644 (file)
index 0000000..88dfb85
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor bugfixes (distribution):
+    - Do not ship any temporary files found in the scripts/maint/practracker
+      directory. Fixes bug 31311; bugfix on 0.4.1.1-alpha.