commit bc63f59f3c45c61296aac94411f9ab73cfbda322 Author: Nick Mathewson nickm@torproject.org Date: Tue Jul 7 10:24:24 2020 -0400
Add correct exclusions to Doxyfile.in.
Now that we have src/ext/ext.md (since b0a716dfb0a73920ac4f), we don't want to have src/ext excluded in its entirety.
Like a smart person, when I added src/ext/ext.md, I edited Doxyfile, forgetting that it is generated from Doxyfile.in. :/
This should fix travis builds. --- Doxyfile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Doxyfile.in b/Doxyfile.in index 503c1302d..4374e5485 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -863,7 +863,8 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run.
-EXCLUDE = ./src/ext \ +EXCLUDE = ./src/ext/ed25519 \ + ./src/ext/rust \ ./src/trunnel \ ./src/test \ ./src/rust/registry
tor-commits@lists.torproject.org