summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools
diff options
context:
space:
mode:
authorKeith Holman <Keith.Holman@windriver.com>2014-06-24 14:50:17 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-06-24 15:39:07 -0400
commitc9e7303ac0fb666a10f0a1b6e9d702e7ea4b7321 (patch)
treec0b5c08c3e56bca2221d5f7e2246b79cbbbb02c8 /meta-openstack/recipes-devtools
parent2a89253e369214837185deb1e4621bc84fc7106d (diff)
downloadmeta-cloud-services-c9e7303ac0fb666a10f0a1b6e9d702e7ea4b7321.tar.gz
keystoneclient: fix keystoneclient-test package
The keystoneclient-test package (created in the keystoneclient recipe) is currently being generated with no files. This is causing a build error. The path to the files to include in this package specify the "${D}" variable at the beginning of the path, which isn't needed. Removing this variable from the line fixes the problem. Signed-off-by: Keith Holman <Keith.Holman@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools')
-rw-r--r--meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
index 9e7965c..eeceb3a 100644
--- a/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb
@@ -48,7 +48,7 @@ do_install_append() {
48PACKAGES =+ " ${SRCNAME}-tests ${BPN}-bash-completion" 48PACKAGES =+ " ${SRCNAME}-tests ${BPN}-bash-completion"
49FILES_${BPN}-bash-completion = "${sysconfdir}/bash_completion.d/*" 49FILES_${BPN}-bash-completion = "${sysconfdir}/bash_completion.d/*"
50 50
51FILES_${SRCNAME}-tests = "${D}${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \ 51FILES_${SRCNAME}-tests = "${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \
52 " 52 "
53RDEPENDS_${SRCNAME}-tests += " \ 53RDEPENDS_${SRCNAME}-tests += " \
54 python-httpretty \ 54 python-httpretty \