Commit 93778dba 93778dba6e4f0457752f054acae06a54d169e78f by Sergey Poznyakoff

Renamed --with-maildir to --with-mail-spool for symmetry.

1 parent b76d0767
...@@ -78,13 +78,13 @@ AC_ARG_WITH(mail-rc, ...@@ -78,13 +78,13 @@ AC_ARG_WITH(mail-rc,
78 [SITE_MAIL_RC="\$(sysconfdir)/mail.rc"]) 78 [SITE_MAIL_RC="\$(sysconfdir)/mail.rc"])
79 79
80 MU_CONF_MAILDIR= 80 MU_CONF_MAILDIR=
81 AC_ARG_WITH(maildir, 81 AC_ARG_WITH(mail-spool,
82 [ --with-maildir=PATH use PATH instead of /var/spool/mail], 82 [ --with-mail-spool=PATH use PATH instead of /var/spool/mail],
83 [case "$withval" in 83 [case "$withval" in
84 /*/) MU_CONF_MAILDIR="\"${withval}\"";; 84 /*/) MU_CONF_MAILDIR="\"${withval}\"";;
85 /*) MU_CONF_MAILDIR="\"${withval}/\"";; 85 /*) MU_CONF_MAILDIR="\"${withval}/\"";;
86 *:*[[/=]]) MU_CONF_MAILDIR="\"${withval}\"";; 86 *:*[[/=]]) MU_CONF_MAILDIR="\"${withval}\"";;
87 *) AC_MSG_ERROR(--with-maildir must be an absolute path or a valid URL);; 87 *) AC_MSG_ERROR(--with-mail-spool must be an absolute path or a valid URL);;
88 esac]) 88 esac])
89 89
90 if test "x$MU_CONF_MAILDIR" != x; then 90 if test "x$MU_CONF_MAILDIR" != x; then
......