aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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