qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH trivial] configure: explicitly disable virtfs if sof


From: Michael Tokarev
Subject: [Qemu-devel] [PATCH trivial] configure: explicitly disable virtfs if softmmu=no
Date: Tue, 11 Jun 2013 00:47:20 +0400

Or else

 ./configure --disable-system --enable-virtfs

(which makes no sense by its own but does not error out)
will fail to build, because it will define CONFIG_VIRTFS,
and the makefile will try to build virtfs-proxy-helper
manpage (but not the executable).

Cc: address@hidden
Cc: M. Mohan Kumar <address@hidden>
Signed-off-by: Michael Tokarev <address@hidden>
---
 configure |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/configure b/configure
index a3f0b7a..0ff0380 100755
--- a/configure
+++ b/configure
@@ -3423,6 +3423,8 @@ if test "$softmmu" = yes ; then
       tools="qemu-ga\$(EXESUF) $tools"
     fi
   fi
+else
+  virtfs=no
 fi
 
 # Mac OS X ships with a broken assembler
-- 
1.7.10.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]