Re: DELETE_ON_ERROR test-suite.log and .PRECIOUS

2013-12-27 Thread Stefano Lattarini
Hi Bob. On 12/26/2013 10:33 PM, Bob Friesenhahn wrote: > On Thu, 26 Dec 2013, Stefano Lattarini wrote: >>> >>> Is there a better way to ask automake/make to keep the test-suite.log >>> around? Is there a way to make the warning go away? >>> >>> kind regards >>> holger >>> >>> >>> [1] >>> http

Re: DELETE_ON_ERROR test-suite.log and .PRECIOUS

2013-12-26 Thread Bob Friesenhahn
On Thu, 26 Dec 2013, Stefano Lattarini wrote: Is there a better way to ask automake/make to keep the test-suite.log around? Is there a way to make the warning go away? kind regards holger [1] http://cgit.freedesktop.org/systemd/systemd/commit/?id=96bd03d5b8d5d04fc8037c03a43bb5b148cc1

Re: DELETE_ON_ERROR test-suite.log and .PRECIOUS

2013-12-26 Thread Stefano Lattarini
On 07/20/2013 08:35 AM, Holger Hans Peter Freyther wrote: > Good Morning, > > systemd is using .DELETE_ON_ERROR to simplify some rules[1] but the > side-effect is that during make check and a failing test the result > of 'test-suite.log' will be deleted as well. I 'fixed' this by adding > .PRECIOU

DELETE_ON_ERROR test-suite.log and .PRECIOUS

2013-07-19 Thread Holger Hans Peter Freyther
Good Morning, systemd is using .DELETE_ON_ERROR to simplify some rules[1] but the side-effect is that during make check and a failing test the result of 'test-suite.log' will be deleted as well. I 'fixed' this by adding .PRECIOUS: $(TEST_SUITE_LOG) to the file but that is triggering the following