summaryrefslogtreecommitdiff
path: root/remake.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2000-01-23 07:05:16 +0000
committerPaul Smith <psmith@gnu.org>2000-01-23 07:05:16 +0000
commit447c76f601fc1dedfd8e9cc333b8e576b96d1d0c (patch)
tree313d4329f44fcc0a1df2457cc99799a731d5b7b2 /remake.c
parent24aec1878b8957579c71a9d0b16048f091df096a (diff)
downloadgunmake-447c76f601fc1dedfd8e9cc333b8e576b96d1d0c.tar.gz
* A few fixes.
Diffstat (limited to 'remake.c')
-rw-r--r--remake.c60
1 files changed, 25 insertions, 35 deletions
diff --git a/remake.c b/remake.c
index 4242e2f..d4c8a03 100644
--- a/remake.c
+++ b/remake.c
@@ -258,39 +258,6 @@ update_goal_chain (goals, makefiles)
return status;
}
-/* Generate an error/fatal message if no rules are available for the target.
- */
-static void
-no_rule_error(file)
- struct file *file;
-{
- const char *msg_noparent
- = _("%sNo rule to make target `%s'%s");
- const char *msg_parent
- = _("%sNo rule to make target `%s', needed by `%s'%s");
-
- if (keep_going_flag || file->dontcare)
- {
- /* If the previous attempt was made while we were creating
- makefiles, but we aren't anymore, print an error now. */
- if (!file->dontcare
- || (file->mfile_status && !updating_makefiles))
- {
- if (file->parent == 0)
- error (NILF, msg_noparent, "*** ", file->name, ".");
- else
- error (NILF, msg_parent, "*** ",
- file->name, file->parent->name, ".");
- }
- file->update_status = 2;
- file->mfile_status = updating_makefiles;
- }
- else if (file->parent == 0)
- fatal (NILF, msg_noparent, "", file->name, "");
- else
- fatal (NILF, msg_parent, "", file->name, file->parent->name, "");
-}
-
/* If FILE is not up to date, execute the commands for it.
Return 0 if successful, 1 if unsuccessful;
but with some flag settings, just call `exit' if unsuccessful.
@@ -381,7 +348,6 @@ update_file_1 (file, depth)
{
DBF (DB_VERBOSE,
_("Recently tried and failed to update file `%s'.\n"));
- no_rule_error(file);
return file->update_status;
}
@@ -996,7 +962,31 @@ remake_file (file)
Pretend it was successfully remade. */
file->update_status = 0;
else
- no_rule_error (file);
+ {
+ const char *msg_noparent
+ = _("%sNo rule to make target `%s'%s");
+ const char *msg_parent
+ = _("%sNo rule to make target `%s', needed by `%s'%s");
+
+ /* This is a dependency file we cannot remake. Fail. */
+ if (!keep_going_flag && !file->dontcare)
+ {
+ if (file->parent == 0)
+ fatal (NILF, msg_noparent, "", file->name, "");
+
+ fatal (NILF, msg_parent, "", file->name, file->parent->name, "");
+ }
+
+ if (!file->dontcare)
+ {
+ if (file->parent == 0)
+ error (NILF, msg_noparent, "*** ", file->name, ".");
+ else
+ error (NILF, msg_parent, "*** ",
+ file->name, file->parent->name, ".");
+ }
+ file->update_status = 2;
+ }
}
else
{