summaryrefslogtreecommitdiff
path: root/implicit.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>1999-08-24 04:49:39 +0000
committerPaul Smith <psmith@gnu.org>1999-08-24 04:49:39 +0000
commitd0b03e9355d18a6e035c3ee2e7f0ba895739ab28 (patch)
tree403c181876c223168faf3d499829991943495c1f /implicit.c
parent5dc4b92b606351290d979371da4a500ce8f6a57e (diff)
downloadgunmake-d0b03e9355d18a6e035c3ee2e7f0ba895739ab28.tar.gz
* Terminology change in docs and code.
Diffstat (limited to 'implicit.c')
-rw-r--r--implicit.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/implicit.c b/implicit.c
index ceb2571..b16ad6e 100644
--- a/implicit.c
+++ b/implicit.c
@@ -376,7 +376,7 @@ pattern_search (file, archive, depth, recursions)
"impossible", then the rule fails and don't
bother trying it on the second pass either
since we know that will fail too. */
- DEBUGP2 (_("Rejecting impossible %s dependency `%s'.\n"),
+ DEBUGP2 (_("Rejecting impossible %s prerequisite `%s'.\n"),
p == depname ? _("implicit") : _("rule"), p);
tryrules[i] = 0;
break;
@@ -384,7 +384,7 @@ pattern_search (file, archive, depth, recursions)
intermediate_files[deps_found] = 0;
- DEBUGP2 (_("Trying %s dependency `%s'.\n"),
+ DEBUGP2 (_("Trying %s prerequisite `%s'.\n"),
p == depname ? _("implicit") : _("rule"), p);
/* The DEP->changed flag says that this dependency resides in a
@@ -408,8 +408,9 @@ pattern_search (file, archive, depth, recursions)
vp = p;
if (vpath_search (&vp, (FILE_TIMESTAMP *) 0))
{
- DEBUGP2 (_("Found dependency `%s' as VPATH `%s'\n"), p, vp);
- strcpy(vp, p);
+ DEBUGP2 (_("Found prerequisite `%s' as VPATH `%s'\n"),
+ p, vp);
+ strcpy (vp, p);
found_files[deps_found++] = vp;
continue;
}