The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=7359df79d3affeccf17f12f16c23ba3d4c5e0346
commit 7359df79d3affeccf17f12f16c23ba3d4c5e0346 Author: Marian Cingel <[email protected]> AuthorDate: 2026-01-04 22:15:01 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2026-01-05 17:26:11 +0000 share/mk: Remove trailing '/' from debug info directories Signed-off-by: Marian Cingel <[email protected]> Reviewed by: emaste Pull request: https://github.com/freebsd/freebsd-src/pull/1947 --- share/mk/bsd.debug.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/mk/bsd.debug.mk b/share/mk/bsd.debug.mk index 9f4dc5d90484..1c85d3f183a7 100644 --- a/share/mk/bsd.debug.mk +++ b/share/mk/bsd.debug.mk @@ -61,7 +61,7 @@ CTFFLAGS+= -g _debuginstall: .if ${MK_DEBUG_FILES} != "no" && defined(DEBUGFILE) .if defined(DEBUGMKDIR) - ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},dbg} -d ${DESTDIR}${DEBUGFILEDIR}/ + ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},dbg} -d ${DESTDIR}${DEBUGFILEDIR} .endif ${INSTALL} ${TAG_ARGS:D${TAG_ARGS},dbg} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \ ${DEBUGFILE} ${DESTDIR}${DEBUGFILEDIR}/${DEBUGFILE}
