From 936992298cd0d4fca87a38310b000a28d01235c4 Mon Sep 17 00:00:00 2001 From: David Herrmann Date: Tue, 23 Oct 2012 12:06:55 +0200 Subject: [PATCH] build: fix typo in wlterm dependency checking This is just two small typos/copy-paste-errors that didn't get checked earlier. Signed-off-by: David Herrmann --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bc05695..0038eb5 100644 --- a/configure.ac +++ b/configure.ac @@ -553,6 +553,8 @@ if test ! "x$enable_wlterm" = "xno" ; then wlterm_avail=no elif test "x$eloop_avail" = "xno" ; then wlterm_avail=no + else + wlterm_avail=yes fi if test "x$enable_wlterm" = "xyes" ; then @@ -578,7 +580,7 @@ fi # wlterm wlterm_enabled=no -if test "x$wltem_avail" = "xyes" ; then +if test "x$wlterm_avail" = "xyes" ; then if test "x${enable_wlterm% *}" = "xyes" ; then wlterm_enabled=yes enable_eloop=yes