From nobody Wed Apr 24 19:46:17 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1599752582; cv=none; d=zohomail.com; s=zohoarc; b=lmmWwZXQujpoYzwiaCG+BwKc6hbTy0IhvwJwjvzRBxcp6ph+fclDv+wD/vR3moT9IYba3uoDbtwGxpDhhx8ewk3mTXcoosUP1mHTIKPNgOvrtMwGcwpmCfxo1sTPVANcafcHLeYHjDvk3PDGUtUz8T3Ye1o6wlADHpFdzReKRvQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1599752582; h=Content-Transfer-Encoding:Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:Sender:Subject:To; bh=B6D4f3DuMLdUZ4VLn5kkmVhr/Gpa8RPyLS8UYn2AK2U=; b=mAyMOrJDwKpJONho2X1kEabsW1sKE/NRzgCTWc/z1iPE6YfswIrSmGeFkUjnERRa4eJeEOm8wCrz8mOrM9t3ndtDrdb9L6pw0litHQypRbyKsZ+lxTMO3cli7yTKUehnbM4t59ciIPckYHOlJmCyKYuH1seAxsMyQkWAji5qegs= ARC-Authentication-Results: i=1; mx.zohomail.com; spf=pass (zohomail.com: domain of lists.xenproject.org designates 192.237.175.120 as permitted sender) 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 159975258211065.05766835487304; Thu, 10 Sep 2020 08:43:02 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1kGOiL-00041z-Cv; Thu, 10 Sep 2020 15:42:21 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1kGOiK-00041s-QY for xen-devel@lists.xenproject.org; Thu, 10 Sep 2020 15:42:20 +0000 Received: from mx2.suse.de (unknown [195.135.220.15]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id 3dc0e17d-c5e6-426f-99d0-843dddb23dd5; Thu, 10 Sep 2020 15:42:19 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id A55E9ACB5; Thu, 10 Sep 2020 15:42:27 +0000 (UTC) X-Inumbo-ID: 3dc0e17d-c5e6-426f-99d0-843dddb23dd5 X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Juergen Gross To: xen-devel@lists.xenproject.org Cc: Juergen Gross , Ian Jackson , Wei Liu Subject: [PATCH] tools/libs/guest: fix Makefile regarding zlib options Date: Thu, 10 Sep 2020 17:42:10 +0200 Message-Id: <20200910154210.2440-1-jgross@suse.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Content-Type: text/plain; charset="utf-8" When renaming the libxenguest sources to xg_*.c there was an omission in the Makefile when setting the zlib related define for the related sources. Fix that. Signed-off-by: Juergen Gross Acked-by: Wei Liu --- tools/libs/guest/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/libs/guest/Makefile b/tools/libs/guest/Makefile index e53aeabd3e..f24732fbcd 100644 --- a/tools/libs/guest/Makefile +++ b/tools/libs/guest/Makefile @@ -94,8 +94,8 @@ else zlib-options =3D $(ZLIB) endif =20 -xc_dom_bzimageloader.o: CFLAGS +=3D $(filter -D%,$(zlib-options)) -xc_dom_bzimageloader.opic: CFLAGS +=3D $(filter -D%,$(zlib-options)) +xg_dom_bzimageloader.o: CFLAGS +=3D $(filter -D%,$(zlib-options)) +xg_dom_bzimageloader.opic: CFLAGS +=3D $(filter -D%,$(zlib-options)) =20 LIBHEADER :=3D xenguest.h =20 --=20 2.26.2