diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-10-19 17:33:08 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-20 10:12:01 +0100 |
commit | ec5ec35f12e9ce4ab70602c0a941968e851f0ecd (patch) | |
tree | eacf1b90cea3f8eec503698562d9924dff11448c | |
parent | b8f704285f2e00b30f5007217b8575e0820953f1 (diff) | |
download | poky-ec5ec35f12e9ce4ab70602c0a941968e851f0ecd.tar.gz |
classes/populate_sdk_ext: consistent indentation
Make indentation consistent here in preparation for the changes that
follow.
(From OE-Core rev: 59a3789c678bf58c0a04b8def416246654680841)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index c244d9356b..90033bab5a 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
@@ -238,11 +238,11 @@ sdk_ext_postinst() { | |||
238 | mv *-nativesdk-libc.tar.* $target_sdk_dir/`dirname ${oe_init_build_env_path}` | 238 | mv *-nativesdk-libc.tar.* $target_sdk_dir/`dirname ${oe_init_build_env_path}` |
239 | 239 | ||
240 | if [ "$prepare_buildsystem" != "no" ]; then | 240 | if [ "$prepare_buildsystem" != "no" ]; then |
241 | printf "Preparing build system...\n" | 241 | printf "Preparing build system...\n" |
242 | # dash which is /bin/sh on Ubuntu will not preserve the | 242 | # dash which is /bin/sh on Ubuntu will not preserve the |
243 | # current working directory when first ran, nor will it set $1 when | 243 | # current working directory when first ran, nor will it set $1 when |
244 | # sourcing a script. That is why this has to look so ugly. | 244 | # sourcing a script. That is why this has to look so ugly. |
245 | 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 ; } | 245 | 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 ; } |
246 | fi | 246 | fi |
247 | echo done | 247 | echo done |
248 | } | 248 | } |