From: Richard Purdie Date: Mon, 22 Oct 2012 13:54:01 +0000 (+0000) Subject: package.bbclass: Exclude the PKGTRIPLETS variable X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92b44ec00ed33b72ecf50cd272cc929fac1251dc;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git package.bbclass: Exclude the PKGTRIPLETS variable Without this, we'd rerun packaging for every machine since this variable contains a machine specific component. (From OE-Core rev: 61131828c59178c923b3d5b5fcacf0dbcba275a5) Signed-off-by: Richard Purdie --- diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 76979bd3df9..75444235bc4 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -1298,6 +1298,7 @@ def getshlibsdirs(d): for t in triplets: dirs.append("${TMPDIR}/pkgdata/" + t + "/shlibs/") return " ".join(dirs) +getshlibsdirs[vardepsexclude] = "PKGTRIPLETS" SHLIBSDIRS = "${@getshlibsdirs(d)}" SHLIBSDIR = "${TMPDIR}/pkgdata/${PACKAGE_ARCH}${TARGET_VENDOR}-${TARGET_OS}/shlibs"