summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 12:45:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 12:52:12 +0000
commit36e918b8a80a0175b5d04cfdd04ab6d19aeef594 (patch)
tree367bbcd3c5cfb1252891ed795d84ab62f2342053 /meta
parent21f2c0b5cd9a53aba277aaaf27a6a5d562b2405f (diff)
downloadpoky-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')
-rw-r--r--meta/classes/staging.bbclass2
-rw-r--r--meta/conf/bitbake.conf2
-rw-r--r--meta/conf/layer.conf2
-rw-r--r--meta/recipes-devtools/gcc/gcc-4.6.inc2
-rw-r--r--meta/recipes-devtools/gcc/gcc-configure-common.inc2
-rw-r--r--meta/recipes-devtools/gcc/libgcc_4.6.bb2
6 files changed, 6 insertions, 6 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass
index 66314a7ba8..a98f51deb5 100644
--- a/meta/classes/staging.bbclass
+++ b/meta/classes/staging.bbclass
@@ -58,7 +58,7 @@ sysroot_stage_all() {
58} 58}
59 59
60do_populate_sysroot[dirs] = "${SYSROOT_DESTDIR}" 60do_populate_sysroot[dirs] = "${SYSROOT_DESTDIR}"
61do_populate_sysroot[umask] = 022 61do_populate_sysroot[umask] = "022"
62 62
63addtask populate_sysroot after do_install 63addtask populate_sysroot after do_install
64 64
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index f2666cb79c..7d0e0d84a9 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -387,7 +387,7 @@ IMAGE_LINK_NAME = "${IMAGE_BASENAME}-${MACHINE}"
387 387
388# This option allows for a percentage overage of the actual image size rather than a 388# This option allows for a percentage overage of the actual image size rather than a
389# fixed extra space, this is space needed for initial startup and basic operations. 389# fixed extra space, this is space needed for initial startup and basic operations.
390IMAGE_OVERHEAD_FACTOR ?= 1.3 390IMAGE_OVERHEAD_FACTOR ?= "1.3"
391# This option allow for adding addition space in K above and beyond what the 391# This option allow for adding addition space in K above and beyond what the
392# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ... 392# IMAGE_OVERHEAD_FACTOR might add. This space is for additional packages, user data, ...
393# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants 393# To set a fixed size then overrideing IMAGE_ROOTFS_SIZE with the max size one wants
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf
index 93c087a047..76ae58ceb7 100644
--- a/meta/conf/layer.conf
+++ b/meta/conf/layer.conf
@@ -9,7 +9,7 @@ BBFILE_PATTERN_normal := "^${LAYERDIR}/"
9BBFILE_PRIORITY_normal = "5" 9BBFILE_PRIORITY_normal = "5"
10 10
11# Set a variable to get to the top of the metadata location 11# Set a variable to get to the top of the metadata location
12COREBASE := ${@os.path.normpath("${LAYERDIR}/../")} 12COREBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
13 13
14# Add scripts to PATH 14# Add scripts to PATH
15PATH := "${PATH}:${COREBASE}/scripts" 15PATH := "${PATH}:${COREBASE}/scripts"
diff --git a/meta/recipes-devtools/gcc/gcc-4.6.inc b/meta/recipes-devtools/gcc/gcc-4.6.inc
index ece378d372..edc2a58de1 100644
--- a/meta/recipes-devtools/gcc/gcc-4.6.inc
+++ b/meta/recipes-devtools/gcc/gcc-4.6.inc
@@ -18,7 +18,7 @@ PV = "4.6.2+svnr${SRCPV}"
18 18
19BINV = "4.6.3" 19BINV = "4.6.3"
20 20
21SRCREV = 181430 21SRCREV = "181430"
22BRANCH = "gcc-4_6-branch" 22BRANCH = "gcc-4_6-branch"
23FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/gcc-4.6' ], d)}" 23FILESPATH = "${@base_set_filespath([ '${FILE_DIRNAME}/gcc-4.6' ], d)}"
24 24
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
20SPECIAL_ARCH_LIST = "powerpc" 20SPECIAL_ARCH_LIST = "powerpc"
21OPTSPACE = ${@base_contains("SPECIAL_ARCH_LIST", "${TARGET_ARCH}", "", "--enable-target-optspace",d)} 21OPTSPACE = '${@base_contains("SPECIAL_ARCH_LIST", "${TARGET_ARCH}", "", "--enable-target-optspace",d)}'
22 22
23EXTRA_OECONF_BASE ?= "" 23EXTRA_OECONF_BASE ?= ""
24EXTRA_OECONF_PATHS ?= "" 24EXTRA_OECONF_PATHS ?= ""
diff --git a/meta/recipes-devtools/gcc/libgcc_4.6.bb b/meta/recipes-devtools/gcc/libgcc_4.6.bb
index 01a3b57e1e..04e287748a 100644
--- a/meta/recipes-devtools/gcc/libgcc_4.6.bb
+++ b/meta/recipes-devtools/gcc/libgcc_4.6.bb
@@ -16,7 +16,7 @@ FILES_${PN}-dev = " \
16 ${libdir}/${TARGET_SYS}/${BINV}/crt* \ 16 ${libdir}/${TARGET_SYS}/${BINV}/crt* \
17 ${libdir}/${TARGET_SYS}/${BINV}/libgcc*" 17 ${libdir}/${TARGET_SYS}/${BINV}/libgcc*"
18FILES_libgcov-dev = " \ 18FILES_libgcov-dev = " \
19 ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a \ 19 ${libdir}/${TARGET_SYS}/${BINV}/libgcov.a"
20 20
21FILES_${PN}-dbg += "${base_libdir}/.debug/" 21FILES_${PN}-dbg += "${base_libdir}/.debug/"
22 22