On 08/09/20 16:13, Philippe Mathieu-Daudé wrote: > > Makefile.include:144: warning: overriding recipe for target 'check-block' > Makefile.mtest:1339: warning: ignoring old recipe for target 'check-block' > config-host.mak is out-of-date, running configure > > Nothing to worry about as Makefile.mtest is generated. > I wonder if it is possible to avoid such warnings though...
It's not possible, but it's harmless: 1) it goes away as soon as Makefile.mtest is regenerated (which happens before any goal specified on the command line is evaluated, so before any "check-*" rule) 2) it only happens in a very edge case of moving stuff *from* Meson back to the Makefile, i.e. in case of wrong judgment as for check-block. Paolo