Changed to use test -h instead of -L for checking /var/mail vs
2001-07-16 Not Zed <NotZed@Ximian.com> * configure.in: Changed to use test -h instead of -L for checking /var/mail vs /var/spool/mail svn path=/trunk/; revision=11118
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2001-07-16 Not Zed <NotZed@Ximian.com>
|
||||
|
||||
* configure.in: Changed to use test -h instead of -L for checking
|
||||
/var/mail vs /var/spool/mail
|
||||
|
||||
2001-07-13 JP Rosevear <jpr@ximian.com>
|
||||
|
||||
* NEWS: more updates
|
||||
|
||||
@ -115,7 +115,7 @@ AC_PATH_PROG(SENDMAIL, sendmail, /usr/sbin/sendmail, /usr/sbin:/usr/lib)
|
||||
AC_DEFINE_UNQUOTED(SENDMAIL_PATH, "$SENDMAIL")
|
||||
|
||||
AC_MSG_CHECKING(system mail directory)
|
||||
if test -d /var/mail -a '!' -L /var/mail ; then
|
||||
if test -d /var/mail -a '!' -h /var/mail ; then
|
||||
system_mail_dir=/var/mail
|
||||
else
|
||||
system_mail_dir=/var/spool/mail
|
||||
|
||||
Reference in New Issue
Block a user