From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HlaL8-0004gr-BV for qemu-devel@nongnu.org; Tue, 08 May 2007 20:47:34 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HlaL6-0004gf-UF for qemu-devel@nongnu.org; Tue, 08 May 2007 20:47:34 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HlaL6-0004gc-Op for qemu-devel@nongnu.org; Tue, 08 May 2007 20:47:32 -0400 Received: from phoenix.bawue.net ([193.7.176.60] helo=mail.bawue.net) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HlaDx-0005pb-IW for qemu-devel@nongnu.org; Tue, 08 May 2007 20:40:09 -0400 Date: Wed, 9 May 2007 01:41:03 +0100 From: Thiemo Seufer Subject: Re: [Qemu-devel] [PATCH] configure Message-ID: <20070509004103.GB27336@networkno.de> References: <20070508210023.GB13638@networkno.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jeff Chua Cc: qemu-devel@nongnu.org Jeff Chua wrote: > 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. I don't see a warning for e.g. "which foo" on my system. Could you describe your system and paste the output the which command produces there? > 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 > >