summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiraj Razick <siraj.razick@collabora.co.uk>2012-02-06 17:49:51 -0500
committerSiraj Razick <siraj.razick@collabora.co.uk>2012-02-08 16:59:20 -0500
commit7a80f7210c56cca3cffd84aaa36ec4a13f68fb37 (patch)
treeaea3ccefa7d83b0aeb30a80ad53196aa0e66ac9a
parentb09e276c0d8cd54ce061af5f4cf66cc704aace21 (diff)
build: Fix typo in AM_CONDITIONAL for HAVE_TP_SALUT
it should be enable_salut_plugin not enable_salt_plugin. So HAVE_TP_SALUT is never true when --enable-salut-plugin is issued for configure script.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b3679e5..44d8e84 100644
--- a/configure.ac
+++ b/configure.ac
@@ -64,7 +64,7 @@ AC_ARG_ENABLE(salut-plugin,
AS_HELP_STRING([--enable-salut-plugin],[build telepathy-salut plugin default=yes]),
enable_salut_plugin=$enableval,enable_salut_plugin=yes)
-AM_CONDITIONAL(HAVE_TP_SALUT, [test "x$enable_salt_plugin" = "xyes"])
+AM_CONDITIONAL(HAVE_TP_SALUT, [test "x$enable_salut_plugin" = "xyes"])
AC_MSG_RESULT($enable_salut_plugin)