Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 08 Jan 2026 17:14:46 +0000
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Cc:        Marian Cingel <cingel.marian@gmail.com>
Subject:   git: 4fc0ae5d6b45 - stable/14 - share/mk: Remove trailing '/' from debug info directories
Message-ID:  <695fe606.30d85.5f2ffea9@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=4fc0ae5d6b459156317acc070acbbdc53cda1d6e

commit 4fc0ae5d6b459156317acc070acbbdc53cda1d6e
Author:     Marian Cingel <cingel.marian@gmail.com>
AuthorDate: 2026-01-04 22:15:01 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-01-08 17:14:05 +0000

    share/mk: Remove trailing '/' from debug info directories
    
    Signed-off-by: Marian Cingel <cingel.marian@gmail.com>
    Reviewed by:    emaste
    Pull request:   https://github.com/freebsd/freebsd-src/pull/1947
    (cherry picked from commit 7359df79d3affeccf17f12f16c23ba3d4c5e0346)
    (cherry picked from commit 3e8f7f7c6c015f044f9e65ea8a1f307d449d41b3)
---
 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}


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?695fe606.30d85.5f2ffea9>