Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Sep 2025 18:57:53 GMT
From:      Ka Ho Ng <khng@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: e2a3408b612f - stable/14 - irdma: normalize .CURDIR-relative paths to SRCTOP
Message-ID:  <202509031857.583IvrPY099134@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by khng:

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

commit e2a3408b612f717c79f0e16cfabfdeff4067c2af
Author:     Ka Ho Ng <khng@FreeBSD.org>
AuthorDate: 2025-08-27 21:13:24 +0000
Commit:     Ka Ho Ng <khng@FreeBSD.org>
CommitDate: 2025-09-03 18:54:26 +0000

    irdma: normalize .CURDIR-relative paths to SRCTOP
    
    Sponsored by:   Juniper Networks, Inc.
    MFC after:      1 week
    Reviewed by:    markj
    Differential Revision:  https://reviews.freebsd.org/D52192
    
    (cherry picked from commit a93e46f15693b6962eefac2ffa962edb020f8b49)
---
 sys/modules/irdma/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys/modules/irdma/Makefile b/sys/modules/irdma/Makefile
index b2ffb67ca66f..a9ef6e63d3f2 100644
--- a/sys/modules/irdma/Makefile
+++ b/sys/modules/irdma/Makefile
@@ -1,8 +1,8 @@
 .include <bsd.own.mk>
 
-OFED_INC_DIR = ${.CURDIR}/../../ofed/include
-ICE_DIR = ${.CURDIR}/../../dev/ice
-.PATH:	${.CURDIR}/../../dev/irdma
+OFED_INC_DIR = ${SRCTOP}/sys/ofed/include
+ICE_DIR = ${SRCTOP}/sys/dev/ice
+.PATH:	${SRCTOP}/sys/dev/irdma
 
 KMOD=	irdma
 SRCS=	icrdma.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202509031857.583IvrPY099134>