Removed the leading "-" of a shell command. The unexpected error message

that it had produced had confused me.
This commit is contained in:
rillig 2006-07-12 12:34:13 +00:00
parent 2e9212ffa1
commit 1dd9c5c90e

View file

@ -1,4 +1,4 @@
# $NetBSD: distclean.mk,v 1.1 2006/06/06 03:05:48 jlam Exp $
# $NetBSD: distclean.mk,v 1.2 2006/07/12 12:34:13 rillig Exp $
.PHONY: pre-distclean
.if !target(pre-distclean)
@ -19,8 +19,10 @@ distclean: pre-distclean clean
${TEST} -z "${PATCHFILES}" || ${RM} -f ${PATCHFILES}; \
fi
. if defined(DIST_SUBDIR)
-${_PKG_SILENT}${_PKG_DEBUG} \
${TEST} ! -d ${_DISTDIR} || ${RMDIR} ${_DISTDIR} 2>/dev/null
${_PKG_SILENT}${_PKG_DEBUG} \
${TEST} ! -d ${_DISTDIR} \
|| ${RMDIR} ${_DISTDIR} 2>/dev/null \
|| ${TRUE}
. endif
${_PKG_SILENT}${_PKG_DEBUG}${RM} -f README.html
.endif