Skip to content
Snippets Groups Projects
Commit 4e3e5264 authored by cypherpunks's avatar cypherpunks Committed by Nick Mathewson
Browse files

Quote variables in case they contain spaces

parent e5754c42
No related branches found
No related tags found
No related merge requests found
......@@ -511,14 +511,14 @@ if test "$enable_static_libevent" = "yes"; then
TOR_LIBEVENT_LIBS="$TOR_LIBDIR_libevent/libevent.a $STATIC_LIBEVENT_FLAGS"
fi
else
if test x$ac_cv_header_event2_event_h = "xyes"; then
if test "x$ac_cv_header_event2_event_h" = "xyes"; then
AC_SEARCH_LIBS(event_new, [event event_core])
AC_SEARCH_LIBS(evdns_base_new, [event event_extra])
if test $ac_cv_search_event_new != "none required"; then
if test "$ac_cv_search_event_new" != "none required"; then
TOR_LIBEVENT_LIBS="$ac_cv_search_event_new"
fi
if test $ac_cv_search_evdns_base_new != "none required"; then
if test "$ac_cv_search_evdns_base_new" != "none required"; then
TOR_LIBEVENT_LIBS="$ac_cv_search_evdns_base_new $TOR_LIBEVENT_LIBS"
fi
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment