Always remove ${WORLDTMP}/build/usr/include, even in the NOCLEAN

case.  This way, we won't have stale compatibility headers there.
This commit is contained in:
Ruslan Ermilov 2003-04-06 21:39:20 +00:00
parent d45d97d1fc
commit 5ceb21ff5d

View File

@ -269,6 +269,7 @@ _worldtmp:
.if !defined(NOCLEAN) .if !defined(NOCLEAN)
rm -rf ${WORLDTMP} rm -rf ${WORLDTMP}
.else .else
rm -rf ${WORLDTMP}/build/usr/include
# XXX - These two can depend on any header file. # XXX - These two can depend on any header file.
rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c