From: OpenOCD-Gerrit <ope...@us...> - 2021-06-04 16:43:24
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via a8d3f601136ccfe446041631cb46a62922f46bca (commit) from e74eaaacbcae8e8ec4063e0d058e2851d35a2af6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a8d3f601136ccfe446041631cb46a62922f46bca Author: R. Diez <rdi...@ya...> Date: Thu May 13 12:36:27 2021 +0200 Makefile: add special target .DELETE_ON_ERROR The special .DELETE_ON_ERROR deletes the target file on recipe error. Otherwise, an incomplete output file may be considered up to date the next time around. .DELETE_ON_ERROR provides reasonable protection at virtually no cost. Signed-off-by: R. Diez <rdi...@ya...> Change-Id: I67dca47ae5ddf3786993c87b9991b3046a85f00b Reviewed-on: http://openocd.zylin.com/6235 Tested-by: jenkins Reviewed-by: Antonio Borneo <bor...@gm...> diff --git a/Makefile.am b/Makefile.am index a047298cb..3858093b6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -2,6 +2,8 @@ # have all needed files, that a GNU package needs AUTOMAKE_OPTIONS = gnu 1.6 +.DELETE_ON_ERROR: + # make sure we pass the correct jimtcl flags to distcheck DISTCHECK_CONFIGURE_FLAGS = --disable-install-jim ----------------------------------------------------------------------- Summary of changes: Makefile.am | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- Main OpenOCD repository |