From 1ee2c197f4d888eee4eb9e3543faf1b4af8915bc Mon Sep 17 00:00:00 2001 From: Keith Holman Date: Tue, 24 Jun 2014 14:50:17 -0400 Subject: 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 Signed-off-by: Bruce Ashfield --- meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-openstack') 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() { PACKAGES =+ " ${SRCNAME}-tests ${BPN}-bash-completion" FILES_${BPN}-bash-completion = "${sysconfdir}/bash_completion.d/*" -FILES_${SRCNAME}-tests = "${D}${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \ +FILES_${SRCNAME}-tests = "${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \ " RDEPENDS_${SRCNAME}-tests += " \ python-httpretty \ -- cgit v1.2.3-54-g00ecf