Use FILES for installing the dtrace scripts.

The BSD.usr.dist mtree always creates /usr/lib/dtrace so there is no
need to check if it exists.

The FILES mechanism already supports LIBRARIES_ONLY.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2015-09-18 21:18:44 +00:00
parent e56d20da9d
commit 144cd65bca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287971

View File

@ -56,6 +56,10 @@ DSRCS= errno.d \
udp.d \
unistd.d
FILES= ${DSRCS}
FILESDIR= /usr/lib/dtrace
FILESMODE= ${NOBINMODE}
WARNS?= 1
CFLAGS+= -I${.OBJDIR} -I${.CURDIR} \
@ -120,11 +124,4 @@ dt_names.c:
beforedepend: dt_errtags.c dt_names.c
beforeinstall:
.if !defined(LIBRARIES_ONLY) && exists(${DESTDIR}/usr/lib/dtrace)
.for file in ${DSRCS}
${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} ${.CURDIR}/${file} ${DESTDIR}/usr/lib/dtrace
.endfor
.endif
.include <bsd.lib.mk>