From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hla09-0008EE-Sc for qemu-devel@nongnu.org; Tue, 08 May 2007 20:25:53 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hla08-0008Du-By for qemu-devel@nongnu.org; Tue, 08 May 2007 20:25:53 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hla08-0008Dr-6o for qemu-devel@nongnu.org; Tue, 08 May 2007 20:25:52 -0400 Received: from nz-out-0506.google.com ([64.233.162.225]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HlZsy-0003wG-Bm for qemu-devel@nongnu.org; Tue, 08 May 2007 20:18:28 -0400 Received: by nz-out-0506.google.com with SMTP id i11so52850nzi for ; Tue, 08 May 2007 17:18:27 -0700 (PDT) Message-ID: Date: Wed, 9 May 2007 08:18:27 +0800 From: "Jeff Chua" Subject: Re: [Qemu-devel] [PATCH] configure In-Reply-To: <20070508210023.GB13638@networkno.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070508210023.GB13638@networkno.de> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thiemo Seufer Cc: qemu-devel@nongnu.org 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 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 >