aboutsummaryrefslogtreecommitdiffstats
path: root/conf/collections.inc
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-03-15 17:13:53 -0700
committerChris Larson <chris_larson@mentor.com>2010-03-15 17:27:48 -0700
commitacf4d8c07c5c877533807125e07ad01751b40c19 (patch)
treef67ea9e14e88682f1c20a9598fad8f4c0dc66b6f /conf/collections.inc
parentda90b492ec8dc12fce8f4b7d07a43d23649d3948 (diff)
downloadopenembedded-acf4d8c07c5c877533807125e07ad01751b40c19.tar.gz
collections.inc: define COLLECTIONS with ?= so it can be pulled in by a distro and overridden by local.conf
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'conf/collections.inc')
-rw-r--r--conf/collections.inc2
1 files changed, 1 insertions, 1 deletions
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)}"