From 43d81ff8669c3705ca3c61270af4a5c7218c2fe6 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 4 Nov 2007 21:54:00 +0000 Subject: 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. --- remake.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'remake.c') diff --git a/remake.c b/remake.c index d1cf702..687b9d2 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; } -- cgit v1.2.3