From 280e9bd0b1e54f228c64aac5310b9e6f9b3b8da9 Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Wed, 16 Jan 2013 22:25:11 +0100 Subject: [PATCH] core: fix detection of guile in configure --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 02631b0d1..593c7c02c 100644 --- a/configure.in +++ b/configure.in @@ -762,10 +762,10 @@ if test "x$enable_guile" = "xyes" ; then GUILE_CFLAGS=`$GUILECONFIG compile` GUILE_LFLAGS=`$GUILECONFIG link` GUILE_VERSION=`$GUILECONFIG info guileversion` - tcl_found="yes" + guile_found="yes" fi - if test "x$tcl_found" = "xno" ; then + if test "x$guile_found" = "xno" ; then AC_MSG_WARN([ *** Script guile-config couldn't be found on your system. *** WeeChat will be built without Guile (scheme) support.])