summaryrefslogtreecommitdiff
path: root/dmake/dmake.h
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-19 20:32:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-19 20:32:02 +0000
commit8f9ab92e25808922af0070f2c778ea2a2aa108eb (patch)
tree4275e9e7d8c510e342dd65dbae65c20f69dd1a34 /dmake/dmake.h
parentb0ae2ae486fa42ce68dd63d71d85b585d04dcd4e (diff)
distinguish between failure exit due to dmake failure vs signal aborted
Diffstat (limited to 'dmake/dmake.h')
-rw-r--r--dmake/dmake.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/dmake/dmake.h b/dmake/dmake.h
index 457031fdb50d..c3003a3db911 100644
--- a/dmake/dmake.h
+++ b/dmake/dmake.h
@@ -28,7 +28,8 @@
#define MAX_INC_DEPTH 10 /* max of ten nested include files */
#define MAX_COND_DEPTH 20 /* max nesting level of conditionals */
-#define ERROR_EXIT_VALUE 255 /* return code of aborted make */
+#define ERROR_ABORT_VALUE 254 /* return code of aborted make */
+#define ERROR_EXIT_VALUE 255 /* return code of failed make */
#define CONTINUATION_CHAR '\\' /* line continuation \<nl> */
#define DEF_ESCAPE_CHAR '\\' /* escape char for used chars */
#define ESCAPE_CHAR *Escape_char