]> sjero.net Git - wget/commitdiff
[svn] Fix the build for systems without makeinfo.
authorhniksic <devnull@localhost>
Fri, 6 May 2005 15:26:36 +0000 (08:26 -0700)
committerhniksic <devnull@localhost>
Fri, 6 May 2005 15:26:36 +0000 (08:26 -0700)
ChangeLog
configure.in

index b5a63d49100d5f62abe1032934825ed58b1d5088..b9c3c716c226c6996e385262f70c7fd9882e9404 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-06  Hrvoje Niksic  <hniksic@xemacs.org>
+
+       * configure.in: Set MAKEINFO to "true" so build doesn't fail for
+       users without either makeinfo or the pre-packaged info files.
+
 2005-05-02  Hrvoje Niksic  <hniksic@xemacs.org>
 
        * INSTALL: Document environment variables affecting configure,
index e7694bd354df4b9b3521d0d4cb80966027cf5f12..c1ee708bb6febc920b8ea8186006a3f4e9b162d7 100644 (file)
@@ -593,13 +593,13 @@ dnl command-line options, such as `-I'.  Now we depend on makeinfo to
 dnl build the Info documentation.
 dnl
 
-AC_CHECK_PROGS(MAKEINFO, makeinfo)
+AC_CHECK_PROGS(MAKEINFO, [makeinfo], [true])
 
 dnl
 dnl Find perl and pod2man
 dnl
 
-AC_PATH_PROGS(PERL, perl5 perl, no)
+AC_PATH_PROGS(PERL, [perl5 perl], no)
 AC_PATH_PROG(POD2MAN, pod2man, no)
 
 if test "x${POD2MAN}" = xno; then