From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42E15C4360C for ; Sat, 12 Oct 2019 13:59:46 +0000 (UTC) Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 1608E2089F for ; Sat, 12 Oct 2019 13:59:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 1608E2089F Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Received: from localhost ([::1]:33406 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iJHvt-0006rP-7j for qemu-devel@archiver.kernel.org; Sat, 12 Oct 2019 09:59:45 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:36681) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iJHvI-0006SM-C2 for qemu-devel@nongnu.org; Sat, 12 Oct 2019 09:59:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iJHvG-0001tH-LJ for qemu-devel@nongnu.org; Sat, 12 Oct 2019 09:59:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44778) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iJHvG-0001tC-G5 for qemu-devel@nongnu.org; Sat, 12 Oct 2019 09:59:06 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 2907518C8910; Sat, 12 Oct 2019 13:59:05 +0000 (UTC) Received: from localhost (ovpn-116-20.phx2.redhat.com [10.3.116.20]) by smtp.corp.redhat.com (Postfix) with ESMTP id A571F60BFB; Sat, 12 Oct 2019 13:59:04 +0000 (UTC) Date: Sat, 12 Oct 2019 10:59:03 -0300 From: Eduardo Habkost To: Peter Maydell Subject: Re: [Qemu-devel] [PULL 12/12] qemu-ga: Convert invocation documentation to rST Message-ID: <20191012135903.GO4084@habkost.net> References: <20190913154952.27724-1-peter.maydell@linaro.org> <20190913154952.27724-13-peter.maydell@linaro.org> <9ede7068-7f92-3e1a-c1f8-c0994eddf671@redhat.com> <4324a9d9-6070-d014-27c9-77187cea1dfa@redhat.com> <07b8a4b8-79d2-a2f6-721d-e4a14917c808@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.70]); Sat, 12 Oct 2019 13:59:05 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 209.132.183.28 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Alex =?iso-8859-1?Q?Benn=E9e?= , QEMU Developers Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" On Thu, Sep 19, 2019 at 04:39:00PM +0100, Peter Maydell wrote: > On Thu, 19 Sep 2019 at 16:37, Eric Blake wrote: > > > > On 9/19/19 10:22 AM, Peter Maydell wrote: > > > > > Alex looked at this and suggests the problem is probably because > > > you're doing an in-tree build. > > > > Bingo. I thought we wanted to get rid of that, though. What's the > > status on forcing out-of-tree builds? (I'll adapt, but only once > > patches are in that force me to). > > I think the general consensus was that it would probably > be a good idea, but nobody's actually written any code :-) > (Among other things, various bits of CI infra, probably > the tests/vm code, etc, need updating to not try to do > an in-tree build.) We have another issue introduced by this patch and not fixed yet, caused by this sphinx-build bug: https://github.com/sphinx-doc/sphinx/issues/2946 We're triggering that bug because the interop/index.html and interop/qemu-ga.8 rules are using the same doctree cache directory. -- Eduardo