summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2012-02-26 21:56:00 +0000
committerKoen Kooi <koen@dominion.thruhere.net>2012-02-26 23:57:23 +0100
commit8cd93743d763ac4895fa1d1578fd4ec972b22076 (patch)
tree8f0c37b4f590f6f8f86270d41222eaa4105a02a9 /meta-oe/recipes-support
parentb85b2dd813c1b0003d36a6954336431672c72103 (diff)
downloadmeta-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-support')
-rw-r--r--meta-oe/recipes-support/mysql/mysql5_5.1.40.bb2
-rw-r--r--meta-oe/recipes-support/opencv/opencv_2.3.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/mysql/mysql5_5.1.40.bb b/meta-oe/recipes-support/mysql/mysql5_5.1.40.bb
index 5229312dce..9656358ce7 100644
--- a/meta-oe/recipes-support/mysql/mysql5_5.1.40.bb
+++ b/meta-oe/recipes-support/mysql/mysql5_5.1.40.bb
@@ -1,6 +1,6 @@
1require ${PN}_${PV}.inc 1require ${PN}_${PV}.inc
2 2
3DEPENDS += mysql5-native 3DEPENDS += "mysql5-native"
4 4
5SRC_URI[md5sum] = "32e7373c16271606007374396e6742ad" 5SRC_URI[md5sum] = "32e7373c16271606007374396e6742ad"
6SRC_URI[sha256sum] = "2b0737b84e7b42c9e54c9658d23bfaee1189cd5955f26b10bdb862761d0f0432" 6SRC_URI[sha256sum] = "2b0737b84e7b42c9e54c9658d23bfaee1189cd5955f26b10bdb862761d0f0432"
diff --git a/meta-oe/recipes-support/opencv/opencv_2.3.bb b/meta-oe/recipes-support/opencv/opencv_2.3.bb
index 0716e0fe4a..1a4bb4fde5 100644
--- a/meta-oe/recipes-support/opencv/opencv_2.3.bb
+++ b/meta-oe/recipes-support/opencv/opencv_2.3.bb
@@ -65,7 +65,7 @@ FILES_${PN}-doc = "${datadir}/OpenCV/doc"
65 65
66ALLOW_EMPTY_${PN} = "1" 66ALLOW_EMPTY_${PN} = "1"
67 67
68INSANE_SKIP_python-opencv = True 68INSANE_SKIP_python-opencv = "True"
69DESCRIPTION_python-opencv = "Python bindings to opencv" 69DESCRIPTION_python-opencv = "Python bindings to opencv"
70FILES_python-opencv = "${PYTHON_SITEPACKAGES_DIR}/*" 70FILES_python-opencv = "${PYTHON_SITEPACKAGES_DIR}/*"
71RDEPENDS_python-opencv = "python-core python-numpy" 71RDEPENDS_python-opencv = "python-core python-numpy"