From 5d00a945b6e42b1e92ae44e6ec40c611bab7f1e2 Mon Sep 17 00:00:00 2001 From: Marcel Moolenaar Date: Thu, 2 Dec 1999 13:47:17 +0000 Subject: [PATCH] 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. --- usr.bin/kdump/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 5cc1042e7f82..daa288f86a08 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -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