From 3aa88b31290c7cbbbae344efdece659194b95c70 Mon Sep 17 00:00:00 2001 From: Stefan Hajnoczi Date: Mon, 2 Nov 2015 14:06:23 +0000 Subject: configure: add missing --disable-modules option 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 Reviewed-by: Fam Zheng Message-id: 1446473183-24250-1-git-send-email-stefanha@redhat.com Signed-off-by: Peter Maydell --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 42e57c0..60cbd84 100755 --- a/configure +++ b/configure @@ -791,6 +791,9 @@ for opt do --enable-modules) modules="yes" ;; + --disable-modules) + modules="no" + ;; --cpu=*) ;; --target-list=*) target_list="$optarg" -- cgit v1.1