]> git.marmaro.de Git - mmh/commitdiff
Fix the AC_PATH_PROG default when vi isn't found during build.
authorJosh Bressers <josh@bress.net>
Mon, 5 Dec 2005 13:38:41 +0000 (13:38 +0000)
committerJosh Bressers <josh@bress.net>
Mon, 5 Dec 2005 13:38:41 +0000 (13:38 +0000)
ChangeLog
configure.in

index 3aaf759fcc262f6cf3df2a91dcee5b15c50aa7cb..e210a680481bae811c3edd697600ce7a436fb359 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-12-05  Josh Bressers  <josh@bress.net>
+
+       * Fedora Bug #174983: configure.in: Fix the AC_PATH_PROG default when
+       vi isn't found during build.
+
 2005-11-19  Peter Maydell  <pmaydell@chiark.greenend.org.uk>
 
        * bug #14977: sbr/context_read.c: special case an MHCONTEXT of
index 729a76622e6978166d47ba58a38b535441beeb5d..c60e80f1c799728933a899dd2011590bb85d5998 100644 (file)
@@ -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.