diff options
author | rillig <rillig@pkgsrc.org> | 2006-01-01 22:30:35 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-01-01 22:30:35 +0000 |
commit | 9a74bcedfd2b99c5f2eb8ff5803d4fe46aa77658 (patch) | |
tree | b501890e56058a6c105e59c8eefdfd0231fc9445 /mk | |
parent | 8a74fb99058c8c4f07aab5696de5d075e61e8fe2 (diff) | |
download | pkgsrc-9a74bcedfd2b99c5f2eb8ff5803d4fe46aa77658.tar.gz |
Fixed trivial pkglint warnings:
- Removed leading white-space in dependency lines.
- s/existant/existent/.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/subst.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/subst.mk b/mk/subst.mk index 2bfb24853b7..cfdf1b9ef79 100644 --- a/mk/subst.mk +++ b/mk/subst.mk @@ -1,4 +1,4 @@ -# $NetBSD: subst.mk,v 1.26 2005/12/06 17:17:30 rillig Exp $ +# $NetBSD: subst.mk,v 1.27 2006/01/01 22:30:35 rillig Exp $ # # This Makefile fragment implements a general text replacement facility. # Package makefiles define a ``class'', for each of which a particular @@ -64,14 +64,14 @@ ${SUBST_STAGE.${_class_}}: subst-${_class_} subst-${_class_}: ${_SUBST_TARGETS.${_class_}} .PHONY: subst-${_class_}-message - subst-${_class_}-message: +subst-${_class_}-message: . if defined(SUBST_MESSAGE.${_class_}) ${_PKG_SILENT}${_PKG_DEBUG} \ ${ECHO_SUBST_MSG} "=> "${SUBST_MESSAGE.${_class_}} . endif .PHONY: subst-${_class_}-cookie - subst-${_class_}-cookie: +subst-${_class_}-cookie: ${_PKG_SILENT}${_PKG_DEBUG} \ ${TOUCH} ${TOUCH_FLAGS} ${_SUBST_COOKIE.${_class_}} @@ -99,7 +99,7 @@ ${_SUBST_COOKIE.${_class_}}: elif ${TEST} -f "$$file"; then \ ${ECHO_SUBST_MSG} "[subst.mk] WARNING: Ignoring non-text file \"$$file\"." 1>&2; \ else \ - ${ECHO_SUBST_MSG} "[subst.mk] WARNING: Ignoring non-existant file \"$$file\"." 1>&2; \ + ${ECHO_SUBST_MSG} "[subst.mk] WARNING: Ignoring non-existent file \"$$file\"." 1>&2; \ fi; \ done .endfor |