compat: ckmake: make return code 2 is error
authorHauke Mehrtens <hauke@hauke-m.de>
Thu, 24 Jan 2013 20:37:34 +0000 (21:37 +0100)
committerHauke Mehrtens <hauke@hauke-m.de>
Thu, 24 Jan 2013 20:40:10 +0000 (21:40 +0100)
If make returns 2 it should be treat as an error and not as ok.
The documentation says 2 is returned if make encountered an error:
https://www.gnu.org/software/make/manual/html_node/Running.html

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
bin/ckmake

index 34bfb09f0225ae27b713c6ee7ecca805b5845011..c821b0a9b80df2e2f220a751e5f042f6d2c5a141 100755 (executable)
@@ -62,8 +62,6 @@ def get_processed_rel(i):
 def get_status_name(status):
        if (status == 0):
                return 'OK'
-       if (status == 2):
-               return 'OK'
        elif (status == 130):
                return 'TERM'
        elif (status == 1234):
@@ -76,8 +74,6 @@ def get_status_name(status):
 def get_stat_pos(status):
        if (status == 0):
                return 34
-       if (status == 2):
-               return 34
        elif (status == 130):
                return 33
        elif (status == 1234):
@@ -90,8 +86,6 @@ def get_stat_pos(status):
 def get_status_color(status):
        if (status == 0):
                return curses.color_pair(1)
-       if (status == 2):
-               return curses.color_pair(1)
        elif (status == 130):
                return curses.color_pair(2)
        elif (status == 1234):