From patchwork Thu Sep 10 15:42:10 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?SsO8cmdlbiBHcm/Dnw==?= X-Patchwork-Id: 11768091 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 29B8E698 for ; Thu, 10 Sep 2020 15:43:53 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (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 E7BF72087C for ; Thu, 10 Sep 2020 15:43:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E7BF72087C Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=suse.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=xen-devel-bounces@lists.xenproject.org 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 X-Inumbo-ID: 3dc0e17d-c5e6-426f-99d0-843dddb23dd5 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) X-Virus-Scanned: by amavisd-new at test-mx.suse.de 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) 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 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" 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 = $(ZLIB) endif -xc_dom_bzimageloader.o: CFLAGS += $(filter -D%,$(zlib-options)) -xc_dom_bzimageloader.opic: CFLAGS += $(filter -D%,$(zlib-options)) +xg_dom_bzimageloader.o: CFLAGS += $(filter -D%,$(zlib-options)) +xg_dom_bzimageloader.opic: CFLAGS += $(filter -D%,$(zlib-options)) LIBHEADER := xenguest.h