From nobody Mon May 6 05:34:45 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1556814743; cv=none; d=zoho.com; s=zohoarc; b=frhIx43Mml7jf1f7G6/AMK5p/fJPoAdGRwBUq6MvFpSXvpqnUA3Mpgx82aAjnO6tcOlEYXm9AwC7Kb+HzT9iqmYXzZ+Lhu6K7c6O3a0iinfPRTskIswvhwl5w62UC48/L+Q+uAz7Tvxve7/F4dfjdqqIoL2TBVps2DqSvO8vR/0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1556814743; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=2x4d3U3146nnszloGpT/E+ITjgwumgvmiDjpYKtJ0VI=; b=GtGBEf32FYycreLMmRUOGJ6wKXVdFaSxHPxAoPVXP8J2T4G4AqNOePJLYbQRYwhkZ3vxvviqyoosaQhZg4h4Ez4wng2ewfBYlMfI2JKEjvTDFsNDiCLJzQ2wWwwHmnW8ghd9cO+otgbCV7IzV94gwL/C9RwH4iVLwAY3yEwd2Uo= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1556814743555914.3428216400482; Thu, 2 May 2019 09:32:23 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hMEbn-0007UK-KP; Thu, 02 May 2019 16:30:55 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hMEbl-0007UF-W7 for xen-devel@lists.xenproject.org; Thu, 02 May 2019 16:30:54 +0000 Received: from SMTP03.CITRIX.COM (unknown [162.221.156.55]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id a6bdda59-6cf7-11e9-843c-bc764e045a96; Thu, 02 May 2019 16:30:52 +0000 (UTC) X-Inumbo-ID: a6bdda59-6cf7-11e9-843c-bc764e045a96 X-IronPort-AV: E=Sophos;i="5.60,422,1549929600"; d="scan'208";a="84972743" From: Anthony PERARD To: Date: Thu, 2 May 2019 17:25:50 +0100 Message-ID: <20190502162550.21038-1-anthony.perard@citrix.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Subject: [Xen-devel] [PATCH] tools/Makefile: Fix build of QEMU, remove --source-path X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Anthony PERARD , Wei Liu , Ian Jackson Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Following QEMU's commit 79d77bcd36 (configure: Remove --source-path option), Xen's build system fails to build qemu-xen. The --source-path option gives redundant information about the location of the sources so simply remove it. (configure already looks at its $0 to find the source-path.) Signed-off-by: Anthony PERARD Acked-by: Ian Jackson --- This patch would unblock the qemu-mainline branch in osstest. --- tools/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/Makefile b/tools/Makefile index c903d6a63e..99cbc950dc 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -246,7 +246,6 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find --prefix=3D$(LIBEXEC) \ --libdir=3D$(LIBEXEC_LIB) \ --includedir=3D$(LIBEXEC_INC) \ - --source-path=3D$$source \ --extra-cflags=3D"-DXC_WANT_COMPAT_EVTCHN_API=3D1 \ -DXC_WANT_COMPAT_GNTTAB_API=3D1 \ -DXC_WANT_COMPAT_MAP_FOREIGN_API=3D1 \ --=20 Anthony PERARD _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel