aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@linuxfr.org>2009-11-06 21:08:40 +0800
committerPascal Terjan <pterjan@linuxfr.org>2009-11-06 21:08:40 +0800
commite6e01ab41d84a9b8a8e415cc3705f6d64b9344c1 (patch)
tree91a9932a6309ac711766886732b8b15f1c8ed1f7
parent26a92d6afa86dd70736863352682889d720587d5 (diff)
downloadgsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.tar
gsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.tar.gz
gsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.tar.bz2
gsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.tar.lz
gsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.tar.xz
gsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.tar.zst
gsoc2013-empathy-e6e01ab41d84a9b8a8e415cc3705f6d64b9344c1.zip
Fix --enable-nautilus-sendto
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 603e10d99..81bfdf5c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -404,9 +404,9 @@ AC_SUBST(MOBLIN_LIBS)
AC_ARG_ENABLE(nautilus-sendto,
AS_HELP_STRING([--enable-nautilus-sendto=@<:@no/yes/auto@:>@],
[build nautilus-sendto plugin]), ,
- enable_nst=auto)
+ enable_nautilus_sendto=auto)
-if test "x$enable_nst" != "xno"; then
+if test "x$enable_nautilus_sendto" != "xno"; then
PKG_CHECK_MODULES(NST,
[
nautilus-sendto >= $NAUTILUS_SENDTO_REQUIRED
@@ -415,7 +415,7 @@ else
have_nst=no
fi
-if test "x$enable_nst" = "xyes" -a "x$have_nst" != "xyes"; then
+if test "x$enable_nautilus_sendto" = "xyes" -a "x$have_nst" != "xyes"; then
AC_MSG_ERROR([Couldn't find nautilus-sendto dependencies.])
fi