From: Chris Larson Date: Tue, 16 Mar 2010 00:13:53 +0000 (-0700) Subject: collections.inc: define COLLECTIONS with ?= so it can be pulled in by a distro and... X-Git-Tag: Release-2010-05/1~340^2~128^2~18 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acf4d8c07c5c877533807125e07ad01751b40c19;p=openembedded.git collections.inc: define COLLECTIONS with ?= so it can be pulled in by a distro and overridden by local.conf Signed-off-by: Chris Larson --- diff --git a/conf/collections.inc b/conf/collections.inc index 6a0f41fd78..0572568f06 100644 --- a/conf/collections.inc +++ b/conf/collections.inc @@ -10,7 +10,7 @@ # supported format will be unpacked into COLLECTIONS_UNPACKDIR and used from # there. -COLLECTIONS = "${@' '.join(d.getVar('BBPATH', 1).split(':'))}" +COLLECTIONS ?= "${@' '.join(d.getVar('BBPATH', 1).split(':'))}" COLLECTIONS_UNPACKDIR = "${TMPDIR}/collections" COLLECTIONINFO = "${@get_collection(d.getVar('FILE', 1), d)}"