diff options
author | ru <ru@FreeBSD.org> | 2000-08-01 10:21:13 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2000-08-01 10:21:13 +0000 |
commit | 1b4cdf40dc8a65f87735c161d44d74339adbedd4 (patch) | |
tree | 1b63c8f75f565e7fab4fe8dce2667563303d31b9 /usr.bin | |
parent | e2b5522f33d0ca177287a72cb0ea63e543042266 (diff) | |
download | FreeBSD-src-1b4cdf40dc8a65f87735c161d44d74339adbedd4.zip FreeBSD-src-1b4cdf40dc8a65f87735c161d44d74339adbedd4.tar.gz |
Make auto-generated ioctl.c to be always considered out of date
since it could potentially depend on any ${DESTDIR}/usr/include
preprocessor file. This fixes the broken -DNOCLEAN world build
I experienced yesterday.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/kdump/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/truss/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/kdump/Makefile b/usr.bin/kdump/Makefile index 534538f..fd3657f 100644 --- a/usr.bin/kdump/Makefile +++ b/usr.bin/kdump/Makefile @@ -7,7 +7,7 @@ SRCS= kdump.c ioctl.c subr.c .PATH: ${.CURDIR}/../ktrace CLEANFILES+=ioctl.c -ioctl.c: mkioctls +ioctl.c: .PHONY sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ioctl.c .include <bsd.prog.mk> diff --git a/usr.bin/truss/Makefile b/usr.bin/truss/Makefile index 8173c8a..1e46c77 100644 --- a/usr.bin/truss/Makefile +++ b/usr.bin/truss/Makefile @@ -28,7 +28,7 @@ syscalls.h: syscalls.master /bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh syscalls.master \ ${.CURDIR}/i386.conf -ioctl.c: ${.CURDIR}/../../usr.bin/kdump/mkioctls +ioctl.c: .PHONY sh ${.CURDIR}/../../usr.bin/kdump/mkioctls ${DESTDIR}/usr/include > ioctl.c .include <bsd.prog.mk> |