From: openocd-gerrit <ope...@us...> - 2025-02-16 16:32:13
|
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 1f3f635693a1ddc85f362dc324cb49c3e7b75f27 (commit) from ed4e58410446343a485625ee2722144cc23d55a6 (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 1f3f635693a1ddc85f362dc324cb49c3e7b75f27 Author: Antonio Borneo <bor...@gm...> Date: Thu Feb 6 11:48:30 2025 +0100 build: drop space after 'angie' folder name The makefile consider the two white spaces between the end of the folder name and the '#' character for the beginning of the comment as part of the folder name. This cause 'make install' to create a folder named 'angie ' that is not welcome on all the OS. Drop the comment and the space after the folder name. Reported-by: Liviu Ionescu <il...@li...> Change-Id: Iadd6803431edb83d0d84f4e4dc6d36b454f912ac Signed-off-by: Antonio Borneo <bor...@gm...> Fixes: 0ed03df6e95b ("amend angie build definitions to fix make dist") Reviewed-on: https://review.openocd.org/c/openocd/+/8740 Reviewed-by: Liviu Ionescu Tested-by: jenkins Reviewed-by: Adrien Charruel <ach...@na...> diff --git a/src/jtag/drivers/Makefile.am b/src/jtag/drivers/Makefile.am index ec233b247..b0dd8e3ad 100644 --- a/src/jtag/drivers/Makefile.am +++ b/src/jtag/drivers/Makefile.am @@ -125,7 +125,7 @@ dist_ulink_DATA = $(ULINK_FIRMWARE)/ulink_firmware.hex endif if ANGIE - angiedir = $(pkgdatadir)/angie # This is only for dist_angie_DATA. + angiedir = $(pkgdatadir)/angie DRIVERFILES += %D%/angie.c DRIVERFILES += %D%/angie/include/msgtypes.h EXTRA_DIST += %D%/angie/README ----------------------------------------------------------------------- Summary of changes: src/jtag/drivers/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |