In the !DEBUG case, we were passing foo.ko two times on the

rm -f command line when doing a make clean.  Fix this.

Reviewed by:	ru
This commit is contained in:
mux 2002-11-06 17:40:13 +00:00
parent 86d546ca0e
commit 6a634df290

View File

@ -181,7 +181,11 @@ ${_ILINKS}:
${ECHO} ${.TARGET} "->" $$path ; \
ln -s $$path ${.TARGET}
CLEANFILES+= ${PROG} ${FULLPROG} ${KMOD}.kld ${OBJS} ${_ILINKS} symb.tmp tmp.o
CLEANFILES+= ${PROG} ${KMOD}.kld ${OBJS} ${_ILINKS} symb.tmp tmp.o
.if defined(DEBUG)
CLEANFILES+= ${FULLPROG}
.endif
.if !target(install)