diff options
author | rillig <rillig@pkgsrc.org> | 2005-08-21 22:00:07 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-08-21 22:00:07 +0000 |
commit | 57994895c298cd4032d6b578aeba824feaf2a85b (patch) | |
tree | 1893e776164caf78d39e1babe7a8292701359ef4 /mk | |
parent | 0bc2b99150ec5bec472f729a2dd034e40546d11f (diff) | |
download | pkgsrc-57994895c298cd4032d6b578aeba824feaf2a85b.tar.gz |
Changed the comment for SUBST_STAGE to be more complete. Started the other
sentences with an uppercase letter. No code changes.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/subst.mk | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mk/subst.mk b/mk/subst.mk index 019100bd607..30cb6d4bf76 100644 --- a/mk/subst.mk +++ b/mk/subst.mk @@ -1,4 +1,4 @@ -# $NetBSD: subst.mk,v 1.22 2005/06/09 19:49:48 rillig Exp $ +# $NetBSD: subst.mk,v 1.23 2005/08/21 22:00:07 rillig Exp $ # # This Makefile fragment implements a general text replacement facility. # Package makefiles define a ``class'', for each of which a particular @@ -11,25 +11,25 @@ # A list of class names. A new class name must be appended (+=). # # SUBST_STAGE.<class> -# "stage" at which we do the text replacement, e.g. pre-configure, -# post-build, etc. +# "stage" at which we do the text replacement. Should be one of +# {pre,do,post}-{extract,patch,configure,build,install}. # # SUBST_MESSAGE.<class> -# message to display, noting what is being substituted +# The message to display when the substitution is done. # # SUBST_FILES.<class> -# files on which to run the substitution; these are relative to -# ${WRKSRC} +# A list of file patterns on which to run the substitution; +# the filenames are relative to ${WRKSRC}. # # SUBST_SED.<class> -# sed(1) substitution expression to run on the specified files +# sed(1) substitution expression to run on the specified files. # # SUBST_FILTER_CMD.<class> -# filter used to perform the actual substitution on the specified +# Filter used to perform the actual substitution on the specified # files. Defaults to ${SED} ${SUBST_SED.<class>}. # # SUBST_POSTCMD.<class> -# command to clean up after sed(1). Defaults to ${RM} -f +# Command to clean up after sed(1). Defaults to ${RM} -f # $$file${_SUBST_BACKUP_SUFFIX}. For debugging, set it to ${DO_NADA}. ECHO_SUBST_MSG?= ${ECHO} |