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:
parent
86d546ca0e
commit
6a634df290
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user