From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52790) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmKma-000413-IU for qemu-devel@nongnu.org; Tue, 11 Jun 2013 05:22:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmKmX-0003Ys-I2 for qemu-devel@nongnu.org; Tue, 11 Jun 2013 05:22:28 -0400 Received: from e28smtp02.in.ibm.com ([122.248.162.2]:56171) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmKmW-0003Y9-TD for qemu-devel@nongnu.org; Tue, 11 Jun 2013 05:22:25 -0400 Received: from /spool/local by e28smtp02.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 11 Jun 2013 14:44:56 +0530 From: "M. Mohan Kumar" In-Reply-To: <51B63DBE.2010903@msgid.tls.msk.ru> References: <1370897240-23490-1-git-send-email-mjt@msgid.tls.msk.ru> <51B63DBE.2010903@msgid.tls.msk.ru> Date: Tue, 11 Jun 2013 14:52:13 +0530 Message-ID: <87li6ht322.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH trivial] configure: explicitly disable virtfs if softmmu=no List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Michael Tokarev Michael Tokarev Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org Michael Tokarev writes: > 11.06.2013 00:47, Michael Tokarev wrote: >> 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). > > The build fails in this case in a separate build tree, because > the fsdev directory is not created and scripts/texi2pod.pl > will be called with output = fsdev/virtfs-proxy-helper.pod, > which can't be created because fsdev/ does not exist. > Hi, I tried ./configure --disable-system --enable-virtfs and make. But didnt face any build failure. Could you please share your build failure information? virtfs-proxy-helper.1 is created inside the fsdev folder. >> >> Cc: qemu-trivial@nongnu.org >> Cc: M. Mohan Kumar >> Signed-off-by: Michael Tokarev >> --- >> 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 >>