diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-16 23:15:41 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-16 23:15:57 +0100 |
commit | fe122663a978f7afdc9d1bb78c9cbf20b213f5e4 (patch) | |
tree | b752f0e9e1f35537f2c619a88d1654b801fb7deb | |
parent | a7aec392577b72b593dc55139d80c3cf98cc6484 (diff) | |
download | poky-fe122663a978f7afdc9d1bb78c9cbf20b213f5e4.tar.gz |
systemd: Fix shell variable assignment spacing
(From OE-Core rev: c49af6de052a45f05d948f61e207c9d168ee10b2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/systemd/systemd_199.bb | 4 |
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 " | |||
78 | do_configure_prepend() { | 78 | do_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 | } |