summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2007-11-04 21:54:00 +0000
committerPaul Smith <psmith@gnu.org>2007-11-04 21:54:00 +0000
commit3870944eb57702d6de534183d9ff77f94fcf0c5d (patch)
treeabaa4fc983ce53dc44d006bb66d76a9e99505329 /remake.c
parent70e8a8dd37d6acc81a64869f872c1f8185a73506 (diff)
downloadmake-3870944eb57702d6de534183d9ff77f94fcf0c5d.tar.gz
New special variable: .RECIPEPREFIX
Allows the user to reset the prefix character for introducing recipe lines from the default (tab) to any other single character, and back again. Also, reworked the manual to consistently use the word "recipe" to describe the set of commands we use to update a target, instead of the various phrases used in the past: "commands", "command lines", "command scripts", etc.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/remake.c b/remake.c
index d1cf7023..687b9d22 100644
--- a/remake.c
+++ b/remake.c
@@ -460,7 +460,7 @@ update_file_1 (struct file *file, unsigned int depth)
if (file->cmds == 0 && !file->is_target
&& default_file != 0 && default_file->cmds != 0)
{
- DBF (DB_IMPLICIT, _("Using default commands for `%s'.\n"));
+ DBF (DB_IMPLICIT, _("Using default recipe for `%s'.\n"));
file->cmds = default_file->cmds;
}
@@ -711,7 +711,7 @@ update_file_1 (struct file *file, unsigned int depth)
{
must_make = 0;
DBF (DB_VERBOSE,
- _("No commands for `%s' and no prerequisites actually changed.\n"));
+ _("No recipe for `%s' and no prerequisites actually changed.\n"));
}
else if (!must_make && file->cmds != 0 && always_make_flag)
{
@@ -761,7 +761,7 @@ update_file_1 (struct file *file, unsigned int depth)
if (file->command_state != cs_finished)
{
- DBF (DB_VERBOSE, _("Commands of `%s' are being run.\n"));
+ DBF (DB_VERBOSE, _("Recipe of `%s' is being run.\n"));
return 0;
}