summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/systemd
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-16 23:15:41 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-16 23:15:54 +0100
commit595e92c76700306f9ff8fcf1557eb7ade1f3e907 (patch)
treeb13055af8c23eb28390d37812e9daa3812576f01 /meta/recipes-core/systemd
parentc237e5464a99b55f9a0c9cdcf8deeb4cc377ed3f (diff)
downloadpoky-595e92c76700306f9ff8fcf1557eb7ade1f3e907.tar.gz
systemd: Fix shell variable assignment spacing
(From OE-Core rev: e389d47524297b3def665a9a3668b6de09e5d20a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd')
-rw-r--r--meta/recipes-core/systemd/systemd_199.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/systemd/systemd_199.bb b/meta/recipes-core/systemd/systemd_199.bb
index bbe19eae10..dc25179e10 100644
--- a/meta/recipes-core/systemd/systemd_199.bb
+++ b/meta/recipes-core/systemd/systemd_199.bb
@@ -78,8 +78,8 @@ EXTRA_OECONF_append_libc-uclibc = " --disable-myhostname "
78do_configure_prepend() { 78do_configure_prepend() {
79 export CPP="${HOST_PREFIX}cpp ${TOOLCHAIN_OPTIONS} ${HOST_CC_ARCH}" 79 export CPP="${HOST_PREFIX}cpp ${TOOLCHAIN_OPTIONS} ${HOST_CC_ARCH}"
80 80
81 export STRINGS = "${HOST_PREFIX}strings" 81 export STRINGS="${HOST_PREFIX}strings"
82 export GPERF = "${HOST_PREFIX}gperf" 82 export GPERF="${HOST_PREFIX}gperf"
83 83
84 sed -i -e 's:=/root:=${ROOT_HOME}:g' units/*.service* 84 sed -i -e 's:=/root:=${ROOT_HOME}:g' units/*.service*
85} 85}