diff options
author | marcel <marcel@FreeBSD.org> | 1999-12-02 13:47:17 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-12-02 13:47:17 +0000 |
commit | 945cd94ac24919bf60e7628fdf57e6a1fb71d075 (patch) | |
tree | 1ec53630d5ea78bedaa06eea4289d7183a9868d5 /usr.bin/kdump | |
parent | 8ed40c9090ec299c54e1a388754094627a89b433 (diff) | |
download | FreeBSD-src-945cd94ac24919bf60e7628fdf57e6a1fb71d075.zip FreeBSD-src-945cd94ac24919bf60e7628fdf57e6a1fb71d075.tar.gz |
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.
Diffstat (limited to 'usr.bin/kdump')
-rw-r--r-- | usr.bin/kdump/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 5cc1042..daa288f 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 <bsd.prog.mk> |