1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-13 10:02:38 +00:00

Make sure DESTDIR is set in the environment of mkioctls. This fixes

the breakage people have encountered at certain times (for example
when the altq_*.h files were removed).

$FreeBSD$ tag added.
This commit is contained in:
Marcel Moolenaar 1999-12-02 13:47:17 +00:00
parent a800cdfbb0
commit 5d00a945b6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=54029

View File

@ -1,4 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
PROG= kdump
CFLAGS+=-I${.CURDIR}/../ktrace -I${.CURDIR}/../..
@ -7,6 +8,6 @@ SRCS= kdump.c ioctl.c subr.c
CLEANFILES+=ioctl.c
ioctl.c: mkioctls
/bin/sh ${.CURDIR}/mkioctls > ioctl.c
DESTDIR=${DESTDIR} /bin/sh ${.CURDIR}/mkioctls > ioctl.c
.include <bsd.prog.mk>