summaryrefslogtreecommitdiff
path: root/src/rule.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2023-04-01 15:57:04 -0400
committerPaul Smith <psmith@gnu.org>2023-04-02 10:02:18 -0400
commitc2792d6129fe9b13efba159126430d657f447033 (patch)
treee17008438550ba148ae1fb7fc15426b3aac388e6 /src/rule.c
parenta0d1e76d604df5bd006fd5ed6a69963d3c6b4d7a (diff)
downloadmake-git-c2792d6129fe9b13efba159126430d657f447033.tar.gz
Adjust output strings to be aligned
Change error and fatal messages to start with lowercase and not end with a period. Note a few very common messages were left as-is, just in case some other tools parse them. Also modify the test known-good-output to satisfy the messages.
Diffstat (limited to 'src/rule.c')
-rw-r--r--src/rule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rule.c b/src/rule.c
index 85b65ff5..bdf04e19 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -616,7 +616,7 @@ print_rule_data_base (void)
/* This can happen if a fatal error was detected while reading the
makefiles and thus count_implicit_rule_limits wasn't called yet. */
if (num_pattern_rules != 0)
- ONN (fatal, NILF, _("BUG: num_pattern_rules is wrong! %u != %u"),
+ ONN (fatal, NILF, "INTERNAL: num_pattern_rules is wrong! %u != %u",
num_pattern_rules, rules);
}
}