Don't end up with a "rm -f" statement with no args. Fixes toolchain/15074.

This commit is contained in:
tv 2002-01-03 19:11:17 +00:00
parent 7528be111a
commit f5a9d4e145
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: bsd.nls.mk,v 1.35 2001/11/28 20:19:08 tv Exp $ # $NetBSD: bsd.nls.mk,v 1.36 2002/01/03 19:11:17 tv Exp $
.include <bsd.init.mk> .include <bsd.init.mk>
@ -54,6 +54,6 @@ ${_F}: .MADE # no build at install
##### Clean rules ##### Clean rules
cleannls: cleannls:
.if !empty(NLS) .if ${MKNLS} != "no" && !empty(NLS)
rm -f ${NLSALL} rm -f ${NLSALL}
.endif .endif