diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-01-22 19:06:28 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-01-22 19:06:28 +0000 |
commit | afc5b617771894246d4dd39dcc39fd426319a11a (patch) | |
tree | 3db53ae11fb569f6f5592c83f43df5b891f34d27 /configure.in | |
parent | 25c6ff6f559a177786591fff09750eef40e0600b (diff) | |
download | tor-afc5b617771894246d4dd39dcc39fd426319a11a.tar.gz tor-afc5b617771894246d4dd39dcc39fd426319a11a.zip |
Do not use == in our shell code; = is standard.
svn:r18239
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 526d4f07a9..52c40cb7c0 100644 --- a/configure.in +++ b/configure.in @@ -48,7 +48,7 @@ if test x$enable_buf_freelists != xno; then [Defined if we try to use freelists for buffer RAM chunks]) fi AM_CONDITIONAL(USE_OPENBSD_MALLOC, test x$enable_openbsd_malloc = xyes) -if test x$enable_instrument_downloads == xyes; then +if test x$enable_instrument_downloads = xyes; then AC_DEFINE(INSTRUMENT_DOWNLOADS, 1, [Defined if we want to keep track of how much of each kind of resource we download.]) fi |