diff options
author | Andreas Müller <schnitzeltony@gmail.com> | 2018-11-13 11:17:29 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-11-14 11:14:40 +0000 |
commit | 1c7bc2ff9d3f63f829d6c8086728144fc3daf5c1 (patch) | |
tree | de6463f60b26839eea23a633748db7d43fdca4a9 | |
parent | 11af905ac7d0de19842ac44085d51b334aec497a (diff) | |
download | poky-1c7bc2ff9d3f63f829d6c8086728144fc3daf5c1.tar.gz |
scons.bbclass: fix indention
(From OE-Core rev: ae12c5f86601a81f4208fd371ce8803464aedaa0)
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/scons.bbclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/scons.bbclass b/meta/classes/scons.bbclass index 286843f74c..9ee7d1587d 100644 --- a/meta/classes/scons.bbclass +++ b/meta/classes/scons.bbclass | |||
@@ -14,13 +14,13 @@ do_configure() { | |||
14 | } | 14 | } |
15 | 15 | ||
16 | scons_do_compile() { | 16 | scons_do_compile() { |
17 | ${STAGING_BINDIR_NATIVE}/scons ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix} ${EXTRA_OESCONS} || \ | 17 | ${STAGING_BINDIR_NATIVE}/scons ${PARALLEL_MAKE} PREFIX=${prefix} prefix=${prefix} ${EXTRA_OESCONS} || \ |
18 | die "scons build execution failed." | 18 | die "scons build execution failed." |
19 | } | 19 | } |
20 | 20 | ||
21 | scons_do_install() { | 21 | scons_do_install() { |
22 | ${STAGING_BINDIR_NATIVE}/scons install_root=${D}${prefix} PREFIX=${prefix} prefix=${prefix} ${EXTRA_OESCONS} install || \ | 22 | ${STAGING_BINDIR_NATIVE}/scons install_root=${D}${prefix} PREFIX=${prefix} prefix=${prefix} ${EXTRA_OESCONS} install || \ |
23 | die "scons install execution failed." | 23 | die "scons install execution failed." |
24 | } | 24 | } |
25 | 25 | ||
26 | EXPORT_FUNCTIONS do_compile do_install | 26 | EXPORT_FUNCTIONS do_compile do_install |