From 7040db74c375ef55d1b040f53071be29590882de Mon Sep 17 00:00:00 2001 From: Mihai Prica Date: Thu, 18 Apr 2013 18:10:42 +0300 Subject: libvirt: Changed python bindings install location The libvirt-python files were installed to dist-packages and this is not part of sys.path in yocto so they were not available to python. Changed this to site-packages. Signed-off-by: Mihai Prica Signed-off-by: Bruce Ashfield --- recipes-extended/libvirt/libvirt-python.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'recipes-extended/libvirt/libvirt-python.inc') diff --git a/recipes-extended/libvirt/libvirt-python.inc b/recipes-extended/libvirt/libvirt-python.inc index 49d15fb3..297e90c8 100644 --- a/recipes-extended/libvirt/libvirt-python.inc +++ b/recipes-extended/libvirt/libvirt-python.inc @@ -10,5 +10,5 @@ RDEPENDS_${PN}-python += "python" PACKAGECONFIG_${PN}-python[xen] = ",,,xen-python" PACKAGES += "${PN}-python-dbg ${PN}-python" -FILES_${PN}-python-dbg += "${libdir}/${PYTHON_DIR}/dist-packages/.debug/" -FILES_${PN}-python += "${libdir}/${PYTHON_DIR}/dist-packages" +FILES_${PN}-python-dbg += "${libdir}/${PYTHON_DIR}/site-packages/.debug/" +FILES_${PN}-python += "${libdir}/${PYTHON_DIR}/site-packages" -- cgit v1.2.3-54-g00ecf