From patchwork Mon Jul 11 10:58:40 2022 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: 12913331 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 6D227C43334 for ; Mon, 11 Jul 2022 10:59:02 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.365045.595079 (Exim 4.92) (envelope-from ) id 1oAr7l-0007cV-Oy; Mon, 11 Jul 2022 10:58:45 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 365045.595079; Mon, 11 Jul 2022 10:58:45 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1oAr7l-0007cO-M8; Mon, 11 Jul 2022 10:58:45 +0000 Received: by outflank-mailman (input) for mailman id 365045; Mon, 11 Jul 2022 10:58:44 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1oAr7j-0007cI-Vv for xen-devel@lists.xenproject.org; Mon, 11 Jul 2022 10:58:43 +0000 Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id 6d90824e-0108-11ed-924f-1f966e50362f; Mon, 11 Jul 2022 12:58:42 +0200 (CEST) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out2.suse.de (Postfix) with ESMTPS id 6A6C61FED0; Mon, 11 Jul 2022 10:58:42 +0000 (UTC) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 1C7B913322; Mon, 11 Jul 2022 10:58:42 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id z4+FBWICzGJfZgAAMHmgww (envelope-from ); Mon, 11 Jul 2022 10:58:42 +0000 X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 6d90824e-0108-11ed-924f-1f966e50362f DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1657537122; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=Jds5BRsfjOadmDwPclKxAiyMARYTIfOKkjIJkyT3rWg=; b=A1slG4u2uwkhEyuZIrCcUuJLLawHiSAlwVo51usOk1ObNmgA6CPif2GJ1kE/D5MTh4Cwdb k7aKJxLD1Y6NMGiaSy70yISPXAPcnNeKy+xfJQlGakSmUtDBzX8ENpLWconq7T/H6VrtTv IMOVl9QHCS/PzbzDrzEzZBIODfBeuP4= From: Juergen Gross To: xen-devel@lists.xenproject.org Cc: Juergen Gross , Andrew Cooper , George Dunlap , Jan Beulich , Julien Grall , Stefano Stabellini , Wei Liu , Anthony Perard Subject: [PATCH] xen/build: remove unneeded enumeration in clean-files Date: Mon, 11 Jul 2022 12:58:40 +0200 Message-Id: <20220711105840.10533-1-jgross@suse.com> X-Mailer: git-send-email 2.35.3 MIME-Version: 1.0 Enumerating a file from $(targets) in $(clean-files) isn't needed. Remove xen/include/xen/hypercall-defs.h from $(clean-files). Reported-by: Jan Beulich Fixes: eca1f00d0227 ("xen: generate hypercall interface related code") Signed-off-by: Juergen Gross --- xen/include/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/Makefile b/xen/include/Makefile index 39d9f5556c..fa0d454ab7 100644 --- a/xen/include/Makefile +++ b/xen/include/Makefile @@ -225,4 +225,4 @@ all: lib-x86-all endif clean-files := compat config generated headers*.chk xen/lib/x86/cpuid-autogen.h -clean-files += xen/hypercall-defs.h hypercall-defs.i +clean-files += hypercall-defs.i