diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2012-02-26 21:56:00 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-02-26 23:57:23 +0100 |
commit | 8cd93743d763ac4895fa1d1578fd4ec972b22076 (patch) | |
tree | 8f0c37b4f590f6f8f86270d41222eaa4105a02a9 /meta-oe/recipes-devtools | |
parent | b85b2dd813c1b0003d36a6954336431672c72103 (diff) | |
download | meta-openembedded-8cd93743d763ac4895fa1d1578fd4ec972b22076.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.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/gcc/gcc-4.5.inc | 2 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb | 2 | ||||
-rw-r--r-- | meta-oe/recipes-devtools/vala/vala.inc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-devtools/gcc/gcc-4.5.inc b/meta-oe/recipes-devtools/gcc/gcc-4.5.inc index c2c451b6a..82dd15715 100644 --- a/meta-oe/recipes-devtools/gcc/gcc-4.5.inc +++ b/meta-oe/recipes-devtools/gcc/gcc-4.5.inc | |||
@@ -23,7 +23,7 @@ PR = "r45" | |||
23 | # which will be next minor release and so on. | 23 | # which will be next minor release and so on. |
24 | 24 | ||
25 | BINV = "${PV}.4" | 25 | BINV = "${PV}.4" |
26 | SRCREV = 181733 | 26 | SRCREV = "181733" |
27 | BRANCH = "gcc-4_5-branch" | 27 | BRANCH = "gcc-4_5-branch" |
28 | PR_append = "+svnr${SRCPV}" | 28 | PR_append = "+svnr${SRCPV}" |
29 | 29 | ||
diff --git a/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb b/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb index 9555c4849..109bf82fa 100644 --- a/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb +++ b/meta-oe/recipes-devtools/ltrace/ltrace_0.5.3.bb | |||
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" | |||
8 | PR = "r4" | 8 | PR = "r4" |
9 | 9 | ||
10 | # ltrace is not ported to sh3/sh4 targets at this time | 10 | # ltrace is not ported to sh3/sh4 targets at this time |
11 | COMPATIBLE_TARGET_SYS = (?!sh[34]) | 11 | COMPATIBLE_TARGET_SYS = "(?!sh[34])" |
12 | 12 | ||
13 | SRC_URI = "\ | 13 | SRC_URI = "\ |
14 | ${DEBIAN_MIRROR}/main/l/ltrace/ltrace_${PV}.orig.tar.gz;name=archive \ | 14 | ${DEBIAN_MIRROR}/main/l/ltrace/ltrace_${PV}.orig.tar.gz;name=archive \ |
diff --git a/meta-oe/recipes-devtools/vala/vala.inc b/meta-oe/recipes-devtools/vala/vala.inc index b63cdfacd..0815c6626 100644 --- a/meta-oe/recipes-devtools/vala/vala.inc +++ b/meta-oe/recipes-devtools/vala/vala.inc | |||
@@ -22,4 +22,4 @@ inherit autotools | |||
22 | 22 | ||
23 | EXTRA_OECONF = "--disable-vapigen" | 23 | EXTRA_OECONF = "--disable-vapigen" |
24 | 24 | ||
25 | FILES_${PN}-doc += ${datadir}/devhelp | 25 | FILES_${PN}-doc += "${datadir}/devhelp" |