diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-05-17 02:59:40 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-05-17 02:59:40 +0000 |
commit | 53c5c78ef59955bb1d454874e56af42a0edce9de (patch) | |
tree | 6e4ebefe365ae35055e00a8fde9e6f3c1fc93e3d | |
parent | 435c579b68d48544b2dfebfa05d4ce9566905c94 (diff) | |
download | tor-53c5c78ef59955bb1d454874e56af42a0edce9de.tar.gz tor-53c5c78ef59955bb1d454874e56af42a0edce9de.zip |
Add a stupid dollar sign. Stupid shell.
svn:r4245
-rw-r--r-- | configure.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 74764cd4e5..d1c201ddf7 100644 --- a/configure.in +++ b/configure.in @@ -70,8 +70,7 @@ if test "$event_found" = no; then LDFLAGS="$LDFLAGS -L/usr/local/lib" AC_TRY_LINK([], [ void *event_init(void); event_init(); ], [ libevent_is_in_local=yes ], [ libevent_is_in_local=no ]) - echo libevent_is_in_local is $libevent_is_in_local - if test libevent_is_in_local = yes; then + if test $libevent_is_in_local = yes; then AC_TRY_RUN([ void *event_init(void); int main(void) |