From: Josh Bressers Date: Thu, 10 Nov 2005 21:37:10 +0000 (+0000) Subject: Fix the AC_PATH_PROG default when sendmail isn't found during build. X-Git-Tag: RELEASE_1_2~19 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=37bc2a48e0613d19e507e476b0e0de919f2b0a26;hp=f177bf9068a1ee5f5281d4ad04dfa2d5df6f6625 Fix the AC_PATH_PROG default when sendmail isn't found during build. --- 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