diff options
author | cypherpunks <cypherpunks@torproject.org> | 2015-02-17 15:36:10 +0100 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-03-14 13:00:04 -0400 |
commit | 17cbc4350f1b840c7f4878808c9610f7a7936592 (patch) | |
tree | f86fafa9519996b67b8f1231a2041bae5e7e2669 /Doxyfile.in | |
parent | 4247ce99e5d9b7b2063df66cc808fac1f09fb799 (diff) | |
download | tor-17cbc4350f1b840c7f4878808c9610f7a7936592.tar.gz tor-17cbc4350f1b840c7f4878808c9610f7a7936592.zip |
Use output variables instead of relative paths.
Fixes the following rules in out-of-tree builds;
- check-spaces
- check-docs
- check-logs
- Doxygen
- coverage-html
And cleans up additional directories;
- coverage_html
- doc/doxygen
Diffstat (limited to 'Doxyfile.in')
-rw-r--r-- | Doxyfile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doxyfile.in b/Doxyfile.in index 344ee27149..a39348f2cb 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -38,7 +38,7 @@ PROJECT_NUMBER = @VERSION@ # If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. -OUTPUT_DIRECTORY = ./doc/doxygen +OUTPUT_DIRECTORY = @top_builddir@/doc/doxygen # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create # 4096 sub-directories (in 2 levels) under the output directory of each output @@ -534,8 +534,8 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = src/common \ - src/or +INPUT = @top_srcdir@/src/common \ + @top_srcdir@/src/or # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is |