diff options
| author | Keith Holman <Keith.Holman@windriver.com> | 2014-06-24 14:50:17 -0400 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-06-24 15:39:03 -0400 |
| commit | 1ee2c197f4d888eee4eb9e3543faf1b4af8915bc (patch) | |
| tree | f86c68e0bba27be8c77cc16a630be2172932c331 | |
| parent | 2833e627e8a3bf679260165e5631e7597bf81173 (diff) | |
| download | meta-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>
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-keystoneclient_git.bb | 2 |
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() { | |||
| 48 | PACKAGES =+ " ${SRCNAME}-tests ${BPN}-bash-completion" | 48 | PACKAGES =+ " ${SRCNAME}-tests ${BPN}-bash-completion" |
| 49 | FILES_${BPN}-bash-completion = "${sysconfdir}/bash_completion.d/*" | 49 | FILES_${BPN}-bash-completion = "${sysconfdir}/bash_completion.d/*" |
| 50 | 50 | ||
| 51 | FILES_${SRCNAME}-tests = "${D}${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \ | 51 | FILES_${SRCNAME}-tests = "${PYTHON_SITEPACKAGES_DIR}/${SRCNAME}/examples \ |
| 52 | " | 52 | " |
| 53 | RDEPENDS_${SRCNAME}-tests += " \ | 53 | RDEPENDS_${SRCNAME}-tests += " \ |
| 54 | python-httpretty \ | 54 | python-httpretty \ |
