From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FYZU4-0002v6-Sv for qemu-devel@nongnu.org; Tue, 25 Apr 2006 22:10:28 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FYZU3-0002ui-GC for qemu-devel@nongnu.org; Tue, 25 Apr 2006 22:10:28 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FYZU3-0002uY-9q for qemu-devel@nongnu.org; Tue, 25 Apr 2006 22:10:27 -0400 Received: from [68.142.198.201] (helo=smtp102.sbc.mail.mud.yahoo.com) by monty-python.gnu.org with smtp (Exim 4.52) id 1FYZWd-000277-N9 for qemu-devel@nongnu.org; Tue, 25 Apr 2006 22:13:07 -0400 Message-ID: <444ED691.9070607@cnpbagwell.com> Date: Tue, 25 Apr 2006 21:10:25 -0500 From: Chris Bagwell MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] Don't install HTML if its not generated Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi all, There was a patch added to CVS that detects if tools exist to build documentation. This helped me during the compile phase since I don't have those tools installed. I had a failure during the install phase because it still tried to install the non-existent docs. Following patch fixed that for me. diff -r1.97 Makefile 58a59 > ifdef BUILD_DOCS 59a61 > endif Chris