From: Juergen Gross Date: Tue, 12 Jul 2022 13:25:35 +0000 (+0200) Subject: xen/build: remove unneeded enumeration in clean-files of xen/include/Makefile X-Git-Tag: archive/raspbian/4.17.0-1+rpi1^2~33^2~452 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=033ae6f88be198b8f56043f94b7076b79b5e447e;p=xen.git xen/build: remove unneeded enumeration in clean-files of xen/include/Makefile Enumerating a file from $(targets) in $(clean-files) isn't needed. Remove hypercall-defs.h and headers*.chk from $(clean-files) in xen/include/Makefile. Reported-by: Jan Beulich Fixes: eca1f00d0227 ("xen: generate hypercall interface related code") Signed-off-by: Juergen Gross Reviewed-by: Anthony PERARD Acked-by: Jan Beulich --- diff --git a/xen/include/Makefile b/xen/include/Makefile index 39d9f5556c..65d61fc7f4 100644 --- a/xen/include/Makefile +++ b/xen/include/Makefile @@ -224,5 +224,5 @@ lib-x86-all: 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 := compat config generated xen/lib/x86/cpuid-autogen.h +clean-files += hypercall-defs.i