When we build against DESTDIR, add the lint library path for DESTDIR during

the link phase for lint.
This commit is contained in:
christos 2021-11-28 15:49:36 +00:00
parent 9bb938d35a
commit c207dc6779
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: bsd.prog.mk,v 1.339 2021/08/23 22:13:27 mrg Exp $ # $NetBSD: bsd.prog.mk,v 1.340 2021/11/28 15:49:36 christos Exp $
# @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94 # @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94
.ifndef HOSTPROG .ifndef HOSTPROG
@ -632,8 +632,12 @@ ${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: .MADE
lint: lint-${_P} lint: lint-${_P}
lint-${_P}: ${LOBJS.${_P}} lint-${_P}: ${LOBJS.${_P}}
.if defined(LOBJS.${_P}) && !empty(LOBJS.${_P}) .if defined(LOBJS.${_P}) && !empty(LOBJS.${_P})
.if defined(DESTDIR)
${LINT} ${LINTFLAGS} ${_LDFLAGS.${_P}:C/-L[ ]*/-L/Wg:M-L*} -L${DESTDIR}/usr/libdata/lint ${LOBJS.${_P}} ${_LDADD.${_P}}
.else
${LINT} ${LINTFLAGS} ${_LDFLAGS.${_P}:C/-L[ ]*/-L/Wg:M-L*} ${LOBJS.${_P}} ${_LDADD.${_P}} ${LINT} ${LINTFLAGS} ${_LDFLAGS.${_P}:C/-L[ ]*/-L/Wg:M-L*} ${LOBJS.${_P}} ${_LDADD.${_P}}
.endif .endif
.endif
.endfor # _P in ${PROGS} ${PROGS_CXX} # } .endfor # _P in ${PROGS} ${PROGS_CXX} # }