From 37bc2a48e0613d19e507e476b0e0de919f2b0a26 Mon Sep 17 00:00:00 2001 From: Josh Bressers Date: Thu, 10 Nov 2005 21:37:10 +0000 Subject: [PATCH] Fix the AC_PATH_PROG default when sendmail isn't found during build. --- ChangeLog | 5 +++++ configure.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6b2512d..c996431 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-10 Josh Bressers + + * Fedora Bug #172838: configure.in: Fix the AC_PATH_PROG default when + sendmail isn't found during build. + 2005-11-09 Peter Maydell * h/aliasbr.h: fix a non-ANSI prototype. diff --git a/configure.in b/configure.in index 287875b..729a766 100644 --- a/configure.in +++ b/configure.in @@ -352,7 +352,7 @@ AC_SUBST(pagerpath)dnl dnl Look for `sendmail' pathtmp=/usr/lib:/usr/sbin:/usr/etc:/usr/ucblib:/usr/bin:/bin -AC_PATH_PROG(sendmailpath, sendmail, no, [$pathtmp]) +AC_PATH_PROG(sendmailpath, sendmail, /usr/sbin/sendmail, [$pathtmp]) dnl Look for `vi' pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin -- 1.7.10.4