From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37015) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZtFkl-00054H-S5 for qemu-devel@nongnu.org; Mon, 02 Nov 2015 09:06:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZtFkh-0004ST-0O for qemu-devel@nongnu.org; Mon, 02 Nov 2015 09:06:31 -0500 Received: from mx1.redhat.com ([209.132.183.28]:59623) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZtFkg-0004SP-Qi for qemu-devel@nongnu.org; Mon, 02 Nov 2015 09:06:26 -0500 From: Stefan Hajnoczi Date: Mon, 2 Nov 2015 14:06:23 +0000 Message-Id: <1446473183-24250-1-git-send-email-stefanha@redhat.com> Subject: [Qemu-devel] [PATCH] configure: add missing --disable-modules option List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , guydavid@outlook.com, Stefan Hajnoczi According to ./configure all options should have both --enable-foo and --disable-foo: # Always add --enable-foo and --disable-foo command line args. # Distributions want to ensure that several features are compiled in, and it # is impossible without a --enable-foo that exits if a feature is not found. Signed-off-by: Stefan Hajnoczi --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 7a1d08d..75b4fa5 100755 --- a/configure +++ b/configure @@ -787,6 +787,9 @@ for opt do --enable-modules) modules="yes" ;; + --disable-modules) + modules="no" + ;; --cpu=*) ;; --target-list=*) target_list="$optarg" -- 2.4.3