Re: RFR: JDK-8077814: Add .DELETE_ON_ERROR to makefiles

2015-04-15 Thread Tim Bell
Erik: On 2015-04-15 11:41, Erik Joelsson wrote: Please review this small change which will improve incremental build reliability. By defining the pseudo target .DELETE_ON_ERROR, make will automatically remove the target of a rule if the recipe fails or is interrupted (typically ctrl-c). By

RFR: JDK-8077814: Add .DELETE_ON_ERROR to makefiles

2015-04-15 Thread Erik Joelsson
Please review this small change which will improve incremental build reliability. By defining the pseudo target .DELETE_ON_ERROR, make will automatically remove the target of a rule if the recipe fails or is interrupted (typically ctrl-c). By doing this, the target is automatically rebuilt on

Re: RFR: JDK-8077814: Add .DELETE_ON_ERROR to makefiles

2015-04-15 Thread Magnus Ihse Bursie
On 2015-04-15 11:41, Erik Joelsson wrote: Please review this small change which will improve incremental build reliability. By defining the pseudo target .DELETE_ON_ERROR, make will automatically remove the target of a rule if the recipe fails or is interrupted (typically ctrl-c). By doing