INN commit: branches/2.5/m4 (sendmail.m4)
INN Commit
rra at isc.org
Sun Nov 23 21:46:28 UTC 2014
Date: Sunday, November 23, 2014 @ 13:46:27
Author: iulius
Revision: 9750
m4/sendmail.m4: add missing brackets
The configure script was failing when running that part of code.
Modified:
branches/2.5/m4/sendmail.m4
-------------+
sendmail.m4 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Modified: sendmail.m4
===================================================================
--- sendmail.m4 2014-11-23 21:45:56 UTC (rev 9749)
+++ sendmail.m4 2014-11-23 21:46:27 UTC (rev 9750)
@@ -19,8 +19,8 @@
AC_MSG_CHECKING([for sendmail])
AC_MSG_RESULT([$SENDMAIL])
else
- AC_PATH_PROG([SENDMAIL], [sendmail], , [/usr/sbin:/usr/lib])
+ AC_PATH_PROG([SENDMAIL], [sendmail], [], [/usr/sbin:/usr/lib])
if test -z "$SENDMAIL" ; then
- AC_MSG_ERROR(sendmail not found, re-run with --with-sendmail)
+ AC_MSG_ERROR([sendmail not found, re-run with --with-sendmail])
fi
fi])
More information about the inn-committers
mailing list