On Thu, Aug 07, 2025 at 11:53:56PM +0200, Nicola Vetrini wrote: > The clean target also clears files outside the xen directory, > which is not needed for the purposes of running an analysis. > > No functional change. > > Reported-by: Andrew Cooper <andrew.coop...@citrix.com> > Signed-off-by: Nicola Vetrini <nicola.vetr...@bugseng.com>
Reviewed-by: Denis Mukhin <dmuk...@ford.com> > --- > automation/eclair_analysis/prepare.sh | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/automation/eclair_analysis/prepare.sh > b/automation/eclair_analysis/prepare.sh > index 4285ff26de54..e941e6edc4f3 100755 > --- a/automation/eclair_analysis/prepare.sh > +++ b/automation/eclair_analysis/prepare.sh > @@ -39,12 +39,12 @@ fi > fi > > ./configure > - make clean > + make -C xen clean > find . -type f -name "*.safparse" -print -delete > "${script_dir}/build.sh" "$1" > # Generate additional configuration files > "${script_dir}/ECLAIR/generate_ecl.sh" > - make clean > + make -C xen clean > cd xen > make -f "${script_dir}/Makefile.prepare" prepare > # Translate the /* SAF-n-safe */ comments into ECLAIR CBTs > -- > 2.43.0 > >