From: Richard Purdie Date: Tue, 16 Apr 2013 22:15:41 +0000 (+0100) Subject: systemd: Fix shell variable assignment spacing X-Git-Tag: 2015-4~6805 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c49af6de052a45f05d948f61e207c9d168ee10b2;p=openembedded-core.git systemd: Fix shell variable assignment spacing Signed-off-by: Richard Purdie --- 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 " do_configure_prepend() { export CPP="${HOST_PREFIX}cpp ${TOOLCHAIN_OPTIONS} ${HOST_CC_ARCH}" - export STRINGS = "${HOST_PREFIX}strings" - export GPERF = "${HOST_PREFIX}gperf" + export STRINGS="${HOST_PREFIX}strings" + export GPERF="${HOST_PREFIX}gperf" sed -i -e 's:=/root:=${ROOT_HOME}:g' units/*.service* }