All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] configure: add missing --disable-modules option
@ 2015-11-02 14:06 Stefan Hajnoczi
  2015-11-03  0:24 ` Fam Zheng
  2015-11-06 11:31 ` Peter Maydell
  0 siblings, 2 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2015-11-02 14:06 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, guydavid, 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 <stefanha@redhat.com>
---
 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

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-11-06 11:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-02 14:06 [Qemu-devel] [PATCH] configure: add missing --disable-modules option Stefan Hajnoczi
2015-11-03  0:24 ` Fam Zheng
2015-11-03 11:22   ` Stefan Hajnoczi
2015-11-03 11:31     ` Daniel P. Berrange
2015-11-03 11:56     ` Peter Maydell
2015-11-04  0:47       ` Fam Zheng
2015-11-06 11:31 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.