aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-27 00:42:18 +0800
committerDan Winship <danw@src.gnome.org>2000-07-27 00:42:18 +0800
commit2d486c69923d782d91f43de1a704fb1369aea25d (patch)
tree80a035ac62c21aa650d531d2b4fa6f7f5f7259b5 /configure.in
parentf062013d51f7f973e1f5ee5734efe25957795f7d (diff)
downloadgsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.tar
gsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.tar.gz
gsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.tar.bz2
gsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.tar.lz
gsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.tar.xz
gsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.tar.zst
gsoc2013-evolution-2d486c69923d782d91f43de1a704fb1369aea25d.zip
fix MOVEMAIL_PATH setting
svn path=/trunk/; revision=4348
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index c021ae3cc3..5d79177ab3 100644
--- a/configure.in
+++ b/configure.in
@@ -501,7 +501,7 @@ if test x$with_movemail = xyes -o x$with_movemail = x; then
with_movemail=no
fi
if test x$with_movemail != xno; then
- AC_DEFINE(MOVEMAIL_PATH, $with_movemail)
+ AC_DEFINE_UNQUOTED(MOVEMAIL_PATH, "$with_movemail")
AC_MSG_RESULT($with_movemail)
else
emacs_exec_dir=`emacs --batch --eval '(message exec-directory)' 2>&1`
@@ -509,7 +509,7 @@ else
/*) if test -x $emacs_exec_dir/movemail; then
if test -u $emacs_exec_dir/movemail -o -g $emacs_exec_dir/movemail; then
AC_MSG_RESULT($emacs_exec_dir/movemail)
- AC_DEFINE(MOVEMAIL_PATH, $emacs_exec_dir/movemail)
+ AC_DEFINE_UNQUOTED(MOVEMAIL_PATH, "$emacs_exec_dir/movemail")
else
AC_MSG_RESULT($emacs_exec_dir/movemail... not set-id: ignored)
fi