diff options
author | dana koch <impatiens@gmail.com> | 2013-06-12 22:35:46 +1000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-06-12 08:58:06 -0400 |
commit | 8c88c75966f834a39786deec6106361f3937563e (patch) | |
tree | add44ac861c2273941daf1751007a779cbd920e6 | |
parent | 6fc3997307b1a2729dcc651102e79b195698b6af (diff) | |
download | tor-8c88c75966f834a39786deec6106361f3937563e.tar tor-8c88c75966f834a39786deec6106361f3937563e.tar.gz |
Use double-quotes for regular_mans, not brackets.
This is a bashism; on systems where sh is not bash (eg., non-Linux, or
Ubuntu using dash), this breaks with a syntax error. This also doesn't
work properly in bash: only the first item is iterated on.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1e69ec48d..235f19b43 100644 --- a/configure.ac +++ b/configure.ac @@ -1469,7 +1469,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) + 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 echo "=================================="; |