From: Josh Bressers Date: Mon, 5 Dec 2005 13:38:41 +0000 (+0000) Subject: Fix the AC_PATH_PROG default when vi isn't found during build. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/8a5d5abeee6212629a14bd80abe2c97a07d609fb?ds=sidebyside;hp=7ac2f0a1ffd82f8a0025bcf8997aa96def68a4f2 Fix the AC_PATH_PROG default when vi isn't found during build. --- diff --git a/ChangeLog b/ChangeLog index 3aaf759f..e210a680 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-12-05 Josh Bressers + + * Fedora Bug #174983: configure.in: Fix the AC_PATH_PROG default when + vi isn't found during build. + 2005-11-19 Peter Maydell * bug #14977: sbr/context_read.c: special case an MHCONTEXT of diff --git a/configure.in b/configure.in index 729a7662..c60e80f1 100644 --- a/configure.in +++ b/configure.in @@ -356,7 +356,7 @@ AC_PATH_PROG(sendmailpath, sendmail, /usr/sbin/sendmail, [$pathtmp]) dnl Look for `vi' pathtmp=/usr/bin:/bin:/usr/ucb:/usr/local/bin -AC_PATH_PROG(vipath, vi, no, [$pathtmp]) +AC_PATH_PROG(vipath, vi, /bin/vi, [$pathtmp]) dnl If editor is not specified yet, dnl then use `vi' as the default.