For those who does minimal install. In this case, texi2html would not be available on the system. I've seen quite a few systems without texi2html.
Again, the patch is not a MUST, but it's nice not to see unnecessary warning. Thanks, Jeff. On 5/9/07, Thiemo Seufer <[EMAIL PROTECTED]> wrote:
Jeff Chua wrote: [snip] > @@ -567,7 +567,8 @@ > fi > > # Check if tools are available to build documentation. > -if [ -x "`which texi2html`" ] && [ -x "`which pod2man`" ]; then > +if [ -x "`which texi2html 2>/dev/null`" \ > + -a -x "`which pod2man 2>/dev/null`" ]; then Under which circumstances does "which" complain about unavailable executables? Thiemo