diff options
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index ec1cff0658..22e0ffca28 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -182,7 +182,7 @@ sdk_ext_postinst() { | |||
182 | # dash which is /bin/sh on Ubuntu will not preserve the | 182 | # dash which is /bin/sh on Ubuntu will not preserve the |
183 | # current working directory when first ran, nor will it set $1 when | 183 | # current working directory when first ran, nor will it set $1 when |
184 | # sourcing a script. That is why this has to look so ugly. | 184 | # sourcing a script. That is why this has to look so ugly. |
185 | sh -c ". buildtools/environment-setup* > /dev/null && cd $target_sdk_dir/`dirname ${oe_init_build_env_path}` && set $target_sdk_dir && . $target_sdk_dir/${oe_init_build_env_path} $target_sdk_dir > /dev/null && bitbake ${SDK_TARGETS} > /dev/null" || { echo "SDK preparation failed" ; exit 1 ; } | 185 | sh -c ". buildtools/environment-setup* > preparing_build_system.log && cd $target_sdk_dir/`dirname ${oe_init_build_env_path}` && set $target_sdk_dir && . $target_sdk_dir/${oe_init_build_env_path} $target_sdk_dir >> preparing_build_system.log && bitbake ${SDK_TARGETS} >> preparing_build_system.log" || { echo "SDK preparation failed: see `pwd`/preparing_build_system.log" ; exit 1 ; } |
186 | echo done | 186 | echo done |
187 | } | 187 | } |
188 | 188 | ||