Re: [PATCH 12/14] KVM: selftests: Use wildcards to find library source files

2023-01-03 Thread Sean Christopherson
On Sat, Dec 24, 2022, Paolo Bonzini wrote: > On 12/13/22 01:16, Sean Christopherson wrote: > > Use $(wildcard ...) to find the library source files instead of manually > > defining the inputs, which is a maintenance burden and error prone. > > No, please don't. This leads to weird errors, for exa

Re: [PATCH 12/14] KVM: selftests: Use wildcards to find library source files

2022-12-24 Thread Paolo Bonzini
On 12/13/22 01:16, Sean Christopherson wrote: Use $(wildcard ...) to find the library source files instead of manually defining the inputs, which is a maintenance burden and error prone. No, please don't. This leads to weird errors, for example when "git checkout" is interrupted with ^C. I

[PATCH 12/14] KVM: selftests: Use wildcards to find library source files

2022-12-12 Thread Sean Christopherson
Use $(wildcard ...) to find the library source files instead of manually defining the inputs, which is a maintenance burden and error prone. Signed-off-by: Sean Christopherson --- tools/testing/selftests/kvm/Makefile | 45 1 file changed, 5 insertions(+), 40 deletion