From 156b6a6db154e1069b512c484b5ce758dc720e6b Mon Sep 17 00:00:00 2001 From: Joe Slater Date: Fri, 24 May 2013 11:05:24 -0700 Subject: [PATCH] lxc: specify distro Do not query the host to find out our distro. We specify the bitbake variable ${DISTRO} in order to get the desired runtime default config file. Signed-off-by: Joe Slater Signed-off-by: Bruce Ashfield --- recipes-containers/lxc/lxc_0.9.0.bb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/recipes-containers/lxc/lxc_0.9.0.bb b/recipes-containers/lxc/lxc_0.9.0.bb index bed7e4a1..21c7e922 100644 --- a/recipes-containers/lxc/lxc_0.9.0.bb +++ b/recipes-containers/lxc/lxc_0.9.0.bb @@ -3,7 +3,7 @@ SECTION = "console/utils" LICENSE = "GPLv2" LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" PRIORITY = "optional" -PR = "r1" +PR = "r2" DEPENDS = "libxml2 libcap" RDEPENDS_${PN} = " \ rsync \ @@ -32,6 +32,10 @@ SRC_URI[sha256sum] = "1e1767eae6cc5fbf892c0e193d25da420ba19f2db203716c38f7cdea3b S = "${WORKDIR}/${PN}-${PV}" +# Let's not configure for the host distro. +# +EXTRA_OECONF += "--with-distro=${DISTRO}" + PACKAGECONFIG ??= "" PACKAGECONFIG[doc] = "--enable-doc,--disable-doc" PACKAGECONFIG[rpath] = "--enable-rpath,--disable-rpath"