INN commit: trunk/m4 (sendmail.m4)
INN Commit
rra at isc.org
Sun Nov 23 21:45:57 UTC 2014
Date: Sunday, November 23, 2014 @ 13:45:56
Author: iulius
Revision: 9749
m4/sendmail.m4: add missing brackets
The configure script was failing when running that part of code.
Modified:
trunk/m4/sendmail.m4
-------------+
sendmail.m4 | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Modified: sendmail.m4
===================================================================
--- sendmail.m4 2014-11-23 21:37:46 UTC (rev 9748)
+++ sendmail.m4 2014-11-23 21:45:56 UTC (rev 9749)
@@ -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