From: Joshua Lock Date: Mon, 23 Apr 2012 21:36:10 +0000 (-0700) Subject: scripts/hob: disable sanity checks when launching X-Git-Tag: 2015-4~10921 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=fe98d1c7159636f123b27292bbd4cc224b532bf0;p=openembedded-core.git scripts/hob: disable sanity checks when launching This enables us to use the GUI to change any settings which might cause sanity checks to fail, such as the proxy configuration. Signed-off-by: Joshua Lock Signed-off-by: Richard Purdie --- diff --git a/scripts/hob b/scripts/hob index ee80cb3701..4a821cb08b 100755 --- a/scripts/hob +++ b/scripts/hob @@ -1,5 +1,6 @@ #!/usr/bin/env bash -bitbake -u hob +export BB_ENV_EXTRAWHITE="DISABLE_SANITY_CHECKS $BB_ENV_EXTRAWHITE" +DISABLE_SANITY_CHECKS=1 bitbake -u hob ret=$? exit $ret