diff options
author | Arlo Breault <arlolra@gmail.com> | 2013-05-17 12:25:42 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-05-24 14:38:58 -0400 |
commit | 15c6a9b02345bf2f3687b3dcd51c7ae9c99e1dd3 (patch) | |
tree | e60639921e6bca0fa7162c76c282bd01f41e6064 | |
parent | f5cf614ed3bfdf14b16242d4f1bec086224acf4e (diff) | |
download | tor-15c6a9b02345bf2f3687b3dcd51c7ae9c99e1dd3.tar.gz tor-15c6a9b02345bf2f3687b3dcd51c7ae9c99e1dd3.zip |
Fix out-of-tree builds.
See #6506
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2a53dd85aa..9a5d589b97 100644 --- a/configure.ac +++ b/configure.ac @@ -1471,7 +1471,7 @@ AC_CONFIG_FILES([ if test x$asciidoc = xtrue && test $ASCIIDOC = "none" ; then regular_mans=(doc/tor doc/tor-gencert doc/tor-resolve doc/torify) for file in $regular_mans ; do - if ! [[ -f $file.1.in ]] || ! [[ -f $file.html.in ]] ; then + if ! [[ -f $srcdir/$file.1.in ]] || ! [[ -f $srcdir/$file.html.in ]] ; then echo "=================================="; echo; echo "You need asciidoc installed to be able to build the manpage."; |