From 2e2348dbf283fe186a7e45a4823b56fed70d47f0 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 11 May 2007 11:43:28 +0000 Subject: devshell.bbclass, patch.bbclass: Check exit code of TERMCMD* commands to see if they were found at all. * Fixes #2274. --- classes/devshell.bbclass | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'classes/devshell.bbclass') diff --git a/classes/devshell.bbclass b/classes/devshell.bbclass index 06152ef8bc..09ce100fc4 100644 --- a/classes/devshell.bbclass +++ b/classes/devshell.bbclass @@ -6,6 +6,10 @@ do_devshell[nostamp] = "1" devshell_do_devshell() { export TERMWINDOWTITLE="Bitbake Developer Shell" ${TERMCMD} + if [ $? -eq 127 ]; then + echo "Fatal: '${TERMCMD}' not found. Check TERMCMD variable." + exit 1 + fi } addtask devshell after do_patch -- cgit v1.2.3