This is an automated email from Gerrit. "Antonio Borneo <borneo.anto...@gmail.com>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8740
-- gerrit commit f060a5bf11e6cf6f69638df0671688b9df7c89f6 Author: Antonio Borneo <borneo.anto...@gmail.com> 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 <i...@livius.net> Change-Id: Iadd6803431edb83d0d84f4e4dc6d36b454f912ac Signed-off-by: Antonio Borneo <borneo.anto...@gmail.com> Fixes: 0ed03df6e95b ("amend angie build definitions to fix make dist") diff --git a/src/jtag/drivers/Makefile.am b/src/jtag/drivers/Makefile.am index ec233b2470..b0dd8e3ad1 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 --