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:03 -0400
commit1ee2c197f4d888eee4eb9e3543faf1b4af8915bc (patch)
treef86c68e0bba27be8c77cc16a630be2172932c331 /meta-openstack/recipes-devtools
parent2833e627e8a3bf679260165e5631e7597bf81173 (diff)
downloadmeta-cloud-services-1ee2c197f4d888eee4eb9e3543faf1b4af8915bc.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 \