diff options
author | rillig <rillig> | 2007-05-24 05:33:49 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-05-24 05:33:49 +0000 |
commit | 7dab6f57bd9e6ceabfac73d4671ae4ca6129332a (patch) | |
tree | 74ae41becdf80174882ef50125f2c2c325241b41 /mk | |
parent | 570148ec210303de66ebfa71cbcb991765d3f2ad (diff) | |
download | pkgsrc-7dab6f57bd9e6ceabfac73d4671ae4ca6129332a.tar.gz |
Replaced printf(1) with echo(1), since printf is not available in the
top-level directory of pkgsrc.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/help/help.mk | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mk/help/help.mk b/mk/help/help.mk index 1023af19098..b4703fedb2f 100644 --- a/mk/help/help.mk +++ b/mk/help/help.mk @@ -1,4 +1,4 @@ -# $NetBSD: help.mk,v 1.8 2007/04/11 06:40:09 rillig Exp $ +# $NetBSD: help.mk,v 1.9 2007/05/24 05:33:49 rillig Exp $ # # This is the integrated pkgsrc online help system. To query for the @@ -29,13 +29,13 @@ TOPIC?= ${topic} .PHONY: help help: .if !defined(TOPIC) - @${PRINTF} "usage: %s help topic=<topic>\\n" ${MAKE:Q} - @${PRINTF} "\\n" - @${PRINTF} "\\t<topic> may be a variable name or a make target,\\n" - @${PRINTF} "\\tfor example CONFIGURE_DIRS or patch. For convenience,\\n" - @${PRINTF} "\\tyou don't need to use uppercase letters when typing\\n" - @${PRINTF} "\\tvariable names.\\n" - @${PRINTF} "\\n" + @${ECHO} "usage: "${MAKE:Q}" help topic=<topic>" + @${ECHO} "" + @${ECHO} " <topic> may be a variable name or a make target," + @${ECHO} " for example CONFIGURE_DIRS or patch. For convenience," + @${ECHO} " you don't need to use uppercase letters when typing" + @${ECHO} " variable names." + @${ECHO} "" .else ${RUN} cd ${PKGSRCDIR}; \ env TOPIC=${TOPIC:Q} ${AWK} -f ${PKGSRCDIR}/mk/help/help.awk ${_HELP_FILES} |