summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2012-02-26 22:53:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 22:51:58 +0000
commit3349b88a761327a42189263e72ac73dfc6d55163 (patch)
tree534941e5961f0248beee4e9f77aa9259f1fd54f2 /meta/recipes-core
parent36e918b8a80a0175b5d04cfdd04ab6d19aeef594 (diff)
downloadpoky-3349b88a761327a42189263e72ac73dfc6d55163.tar.gz
More quoting fixes
* We have various variables which are either not quoted at all or are half quoted. This patch fixes the bad exmaples so everything is consistent. (From OE-Core rev: 960ee8076e860353a05eb2eb7f825a455c54698d) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/busybox/busybox.inc4
-rw-r--r--meta/recipes-core/eglibc/eglibc.inc2
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-core/busybox/busybox.inc b/meta/recipes-core/busybox/busybox.inc
index fc69d65f69..7aa131cf69 100644
--- a/meta/recipes-core/busybox/busybox.inc
+++ b/meta/recipes-core/busybox/busybox.inc
@@ -73,8 +73,8 @@ configmangle = '/CROSS_COMPILER_PREFIX/d; \
73 ' 73 '
74OE_FEATURES := "${@features_to_busybox_conf(d)}" 74OE_FEATURES := "${@features_to_busybox_conf(d)}"
75OE_DEL := "${@features_to_busybox_del(d)}" 75OE_DEL := "${@features_to_busybox_del(d)}"
76DO_IPv4 := ${@base_contains('DISTRO_FEATURES', 'ipv4', 1, 0, d)} 76DO_IPv4 := "${@base_contains('DISTRO_FEATURES', 'ipv4', 1, 0, d)}"
77DO_IPv6 := ${@base_contains('DISTRO_FEATURES', 'ipv6', 1, 0, d)} 77DO_IPv6 := "${@base_contains('DISTRO_FEATURES', 'ipv6', 1, 0, d)}"
78 78
79python () { 79python () {
80 if "${OE_DEL}": 80 if "${OE_DEL}":
diff --git a/meta/recipes-core/eglibc/eglibc.inc b/meta/recipes-core/eglibc/eglibc.inc
index 64694a04d8..da5c1872ea 100644
--- a/meta/recipes-core/eglibc/eglibc.inc
+++ b/meta/recipes-core/eglibc/eglibc.inc
@@ -42,7 +42,7 @@ ARM_INSTRUCTION_SET = "arm"
42# PARALLEL_MAKE into PARALLELMFLAGS and empty out PARALLEL_MAKE 42# PARALLEL_MAKE into PARALLELMFLAGS and empty out PARALLEL_MAKE
43EGLIBCPARALLELISM := "PARALLELMFLAGS="${PARALLEL_MAKE}"" 43EGLIBCPARALLELISM := "PARALLELMFLAGS="${PARALLEL_MAKE}""
44EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM" 44EXTRA_OEMAKE[vardepsexclude] += "EGLIBCPARALLELISM"
45EXTRA_OEMAKE += ${EGLIBCPARALLELISM} 45EXTRA_OEMAKE += "${EGLIBCPARALLELISM}"
46PARALLEL_MAKE = "" 46PARALLEL_MAKE = ""
47 47
48OE_FEATURES = "${@features_to_eglibc_settings(d)}" 48OE_FEATURES = "${@features_to_eglibc_settings(d)}"