The branch stable/15 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=b9f9f445f0630781621d33d1ce0154512f0389c6
commit b9f9f445f0630781621d33d1ce0154512f0389c6 Author: Marian Cingel <[email protected]> AuthorDate: 2026-01-04 22:15:01 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2026-01-07 15:47:04 +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 (cherry picked from commit 7359df79d3affeccf17f12f16c23ba3d4c5e0346) --- 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 cf2fb4356aef..b4478ca2e7f2 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}
