diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-26 12:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-26 12:52:12 +0000 |
commit | 36e918b8a80a0175b5d04cfdd04ab6d19aeef594 (patch) | |
tree | 367bbcd3c5cfb1252891ed795d84ab62f2342053 /meta/recipes-devtools/gcc/gcc-configure-common.inc | |
parent | 21f2c0b5cd9a53aba277aaaf27a6a5d562b2405f (diff) | |
download | poky-36e918b8a80a0175b5d04cfdd04ab6d19aeef594.tar.gz |
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: 30253358f5e76fb7b25be27198b4c125e0dbdf2c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-configure-common.inc')
-rw-r--r-- | meta/recipes-devtools/gcc/gcc-configure-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc index c4b6ac1111..8ab799f7f1 100644 --- a/meta/recipes-devtools/gcc/gcc-configure-common.inc +++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc | |||
@@ -18,7 +18,7 @@ LANGUAGES ?= "c,c++${FORTRAN}${JAVA}" | |||
18 | # when linking shared libraries further in the build like (gnutls) | 18 | # when linking shared libraries further in the build like (gnutls) |
19 | 19 | ||
20 | SPECIAL_ARCH_LIST = "powerpc" | 20 | SPECIAL_ARCH_LIST = "powerpc" |
21 | OPTSPACE = ${@base_contains("SPECIAL_ARCH_LIST", "${TARGET_ARCH}", "", "--enable-target-optspace",d)} | 21 | OPTSPACE = '${@base_contains("SPECIAL_ARCH_LIST", "${TARGET_ARCH}", "", "--enable-target-optspace",d)}' |
22 | 22 | ||
23 | EXTRA_OECONF_BASE ?= "" | 23 | EXTRA_OECONF_BASE ?= "" |
24 | EXTRA_OECONF_PATHS ?= "" | 24 | EXTRA_OECONF_PATHS ?= "" |