diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-05-11 11:43:28 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-05-11 11:43:28 +0000 |
commit | 2e2348dbf283fe186a7e45a4823b56fed70d47f0 (patch) | |
tree | 586f91780899e3f2f41e64643eba97353f8ab535 /classes/patch.bbclass | |
parent | a037a35927c14aa47fcff56fbf25c07ea77f2b94 (diff) |
devshell.bbclass, patch.bbclass: Check exit code of TERMCMD* commands to see if they were found at all.
* Fixes #2274.
Diffstat (limited to 'classes/patch.bbclass')
-rw-r--r-- | classes/patch.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/classes/patch.bbclass b/classes/patch.bbclass index 84cca7f5a0..7a5dcac57a 100644 --- a/classes/patch.bbclass +++ b/classes/patch.bbclass @@ -376,7 +376,10 @@ def patch_init(d): os.environ['TERMWINDOWTITLE'] = "Bitbake: Please fix patch rejects manually" os.environ['TERMRCFILE'] = rcfile - os.system(bb.data.getVar('TERMCMDRUN', d, 1)) + rc = os.system(bb.data.getVar('TERMCMDRUN', d, 1)) + if os.WIFEXITED(rc) and os.WEXITSTATUS(rc) == 127: + bb.msg.fatal(bb.msg.domain.Build, ("Cannot proceed with manual patch resolution - '%s' not found. " \ + + "Check TERMCMDRUN variable.") % bb.data.getVar('TERMCMDRUN', d, 1)) # Construct a new PatchSet after the user's changes, compare the # sets, checking patches for modifications, and doing a remote |