aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2006-03-21 19:01:34 +0000
committerNick Mathewson <nickm@torproject.org>2006-03-21 19:01:34 +0000
commit68b3b3ee7cf2ca6e7057e1d7cc73e8dcef1b2f95 (patch)
treeb20923a15de5813e5947ce7e17207d403ede0c0e /configure.in
parent0e68ec0846495d78f2a684d3468b545198d5593e (diff)
downloadtor-68b3b3ee7cf2ca6e7057e1d7cc73e8dcef1b2f95.tar
tor-68b3b3ee7cf2ca6e7057e1d7cc73e8dcef1b2f95.tar.gz
Oops; give error earlier when no runnable libevent is found. Grep reveals no more errors of this type in configure.in
svn:r6210
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 571964aeb..5e7ae34c2 100644
--- a/configure.in
+++ b/configure.in
@@ -191,7 +191,7 @@ AC_CACHE_CHECK([whether we need extra options to link libevent],
break
fi
done
- if test le_runs = no ; then
+ if test $le_runs = no ; then
AC_MSG_ERROR([Found linkable libevent in $ac_cv_libevent_dir, but it doesn't run, even with -R. Maybe specify another using --with-libevent-dir?])
fi
LDFLAGS="$saved_LDFLAGS"