diff options
author | Paul Smith <psmith@gnu.org> | 1999-09-03 22:46:28 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 1999-09-03 22:46:28 +0000 |
commit | e49b2f15c9c875f7db16064834ffac123f48b612 (patch) | |
tree | d38ac0ac88ba4b64006ecbfad092d1446eef47d9 /main.c | |
parent | 10fee1c03c9dcf887314c04612224aeadcba6dd7 (diff) | |
download | gunmake-e49b2f15c9c875f7db16064834ffac123f48b612.tar.gz |
* Removed a memory stomp (reading freed memory).
* Fixed some infinite recursion on rebuilt makefiles bugs.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1331,7 +1331,8 @@ int main (int argc, char ** argv) (ignore the jobserver pipe for this make) but print a message. */ if (job_slots > 0) - error (NILF, _("warning: -jN set for submakes: ignoring jobserver.")); + error (NILF, + _("warning: -jN forced in submake: disabling jobserver mode.")); /* Create a duplicate pipe, that will be closed in the SIGCHLD handler. If this fails with EBADF, the parent has closed the pipe @@ -1344,7 +1345,7 @@ int main (int argc, char ** argv) pfatal_with_name (_("dup jobserver")); error (NILF, - _("warning: jobserver unavailable (using -j1). Add `+' to parent make rule.")); + _("warning: jobserver unavailable: using -j1. Add `+' to parent make rule.")); job_slots = 1; } |