From patchwork Sat Feb 6 08:48:23 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Ullrich X-Patchwork-Id: 44702 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 60597B7CEA for ; Sat, 6 Feb 2010 19:53:01 +1100 (EST) Received: from localhost ([127.0.0.1]:60589 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NdgPG-0006DG-Rt for incoming@patchwork.ozlabs.org; Sat, 06 Feb 2010 03:52:46 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NdgL6-0004jY-4Y for qemu-devel@nongnu.org; Sat, 06 Feb 2010 03:48:28 -0500 Received: from [199.232.76.173] (port=33859 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NdgL4-0004jL-I1 for qemu-devel@nongnu.org; Sat, 06 Feb 2010 03:48:27 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1NdgL3-0004Yv-SY for qemu-devel@nongnu.org; Sat, 06 Feb 2010 03:48:26 -0500 Received: from mail-fx0-f217.google.com ([209.85.220.217]:46142) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NdgL3-0004Yl-J4 for qemu-devel@nongnu.org; Sat, 06 Feb 2010 03:48:25 -0500 Received: by fxm9 with SMTP id 9so2173493fxm.10 for ; Sat, 06 Feb 2010 00:48:24 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=15TgQ3O/4RoKU4cptFdRibM3lePW6Pw7urm8WzBGhN4=; b=QfSszOKUy057bpTa6P3KUAKx8rQKJR9DC3yrmLbGNtMrNFjFTOTwLyf2/LMuwWuaQH tHzUwBsivos2+Ok0fK1/yll+eTmBH208jtGkJdGYjC5WTQjmMLzuwe7P1VCwEkD+P36N Pe18PD7UEHQwmJaDmLwVXdB5U5aAWEXAEOYbQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=LslYQtABpamOkuYTS2k4SC8S/G5FTHfOnJMrPbBD4ln1qqtMgia+JoqFYLfyY3N7gl JVssx5CPdY3n3203KwrhOdEKhlQoE5RCq8tGsPlZB5rUWV6agX1K8HrcXESjE1bN+8ah +cpHg9W+/VyYkpTAE2eeibsAMP4R8ftp8Kp2Y= MIME-Version: 1.0 Received: by 10.239.187.202 with SMTP id m10mr371420hbh.30.1265446103946; Sat, 06 Feb 2010 00:48:23 -0800 (PST) Date: Sat, 6 Feb 2010 09:48:23 +0100 Message-ID: From: Dirk Ullrich To: qemu-devel@nongnu.org X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) Subject: [Qemu-devel] [PATCH] configure: Add --enable-docs and --disable-docs to --help X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This patch adds the documentation-related options "--enable-docs" and "--disable-docs" to the help message of "configure". Signed-off-by: Dirk Ullrich --- configure | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) exit 1 diff --git a/configure b/configure index 42ef628..eac2a15 100755 --- a/configure +++ b/configure @@ -794,6 +794,8 @@ echo " --enable-linux-aio enable Linux AIO support" echo " --enable-io-thread enable IO thread" echo " --disable-blobs disable installing provided firmware blobs" echo " --kerneldir=PATH look for kernel includes in PATH" +echo " --enable-docs enable installing of documentation" +echo " --disable-docs disable installing of documentation" echo "" echo "NOTE: The object files are built at the place where configure is launched"