diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-28 13:14:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-28 13:14:42 +0000 |
commit | b82a793bdbba1698eb9443d8deb372625e20e40a (patch) | |
tree | 2c8f35eaa17d7724dfdf6f2d5f867c8825187df7 | |
parent | f60a5d159bf4b446acb40674e19e169b12c5b57d (diff) | |
download | poky-b82a793bdbba1698eb9443d8deb372625e20e40a.tar.gz |
More quoting fixes
(From OE-Core rev: 749d252475df090d51313cfbbe3f159db9f0566d)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/buildstats.bbclass | 6 | ||||
-rw-r--r-- | meta/recipes-extended/lsb/lsbtest_1.0.bb | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes/buildstats.bbclass b/meta/classes/buildstats.bbclass index 9690a04100..efd3426c16 100644 --- a/meta/classes/buildstats.bbclass +++ b/meta/classes/buildstats.bbclass | |||
@@ -1,6 +1,6 @@ | |||
1 | BUILDSTATS_BASE = ${TMPDIR}/buildstats/ | 1 | BUILDSTATS_BASE = "${TMPDIR}/buildstats/" |
2 | BNFILE = ${BUILDSTATS_BASE}/.buildname | 2 | BNFILE = "${BUILDSTATS_BASE}/.buildname" |
3 | DEVFILE = ${BUILDSTATS_BASE}/.device | 3 | DEVFILE = "${BUILDSTATS_BASE}/.device" |
4 | 4 | ||
5 | ################################################################################ | 5 | ################################################################################ |
6 | # Build statistics gathering. | 6 | # Build statistics gathering. |
diff --git a/meta/recipes-extended/lsb/lsbtest_1.0.bb b/meta/recipes-extended/lsb/lsbtest_1.0.bb index d932c831f6..11911643b5 100644 --- a/meta/recipes-extended/lsb/lsbtest_1.0.bb +++ b/meta/recipes-extended/lsb/lsbtest_1.0.bb | |||
@@ -11,7 +11,7 @@ SRC_URI = "file://LSB_Test.sh \ | |||
11 | " | 11 | " |
12 | RDEPENDS_${PN} = "rpm" | 12 | RDEPENDS_${PN} = "rpm" |
13 | 13 | ||
14 | S=${WORKDIR} | 14 | S = "${WORKDIR}" |
15 | 15 | ||
16 | do_install() { | 16 | do_install() { |
17 | install -d ${D}/usr/bin | 17 | install -d ${D}/usr/bin |