Skip to content
Snippets Groups Projects
Commit c1129edc authored by rtoy's avatar rtoy
Browse files

Exit with code 1 if ldb wants to quit due to EOF on something other

than a tty.  This makes the build scripts stop if we get dumped to ldb
due to a fatal build error.
parent 1086d041
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.21 2008/03/19 09:17:13 cshapiro Rel $ */ /* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.22 2010/01/26 18:54:18 rtoy Rel $ */
#include <stdio.h> #include <stdio.h>
#include <sys/types.h> #include <sys/types.h>
...@@ -470,7 +470,7 @@ sub_monitor(void) ...@@ -470,7 +470,7 @@ sub_monitor(void)
continue; continue;
} else { } else {
fprintf(stderr, "\nEOF on something other than a tty.\n"); fprintf(stderr, "\nEOF on something other than a tty.\n");
exit(0); exit(1);
} }
} }
ptr = line; ptr = line;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment