mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
double-quotes and changes file for 6506.
This commit is contained in:
parent
15c6a9b023
commit
e7134c2375
4
changes/bug6506
Normal file
4
changes/bug6506
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor features (build):
|
||||
- Detect a missing asciidoc, and warn the user about it, during
|
||||
configure, rather than at build time. Fixes issue 6506. Patch
|
||||
from Arlo Breault.
|
@ -1468,10 +1468,10 @@ AC_CONFIG_FILES([
|
||||
src/config/torrc.sample
|
||||
])
|
||||
|
||||
if test x$asciidoc = xtrue && test $ASCIIDOC = "none" ; then
|
||||
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 $srcdir/$file.1.in ]] || ! [[ -f $srcdir/$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.";
|
||||
|
Loading…
Reference in New Issue
Block a user