diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-02 14:10:46 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:21 +0000 |
commit | 8b5ee367a630027d478aed265ee79a7230e91673 (patch) | |
tree | d839d682220a99bc8609fc284eb5011026461a91 /meta/conf | |
parent | 947e5260f9f3a68e51ccc456610bad9a8b200224 (diff) | |
download | poky-8b5ee367a630027d478aed265ee79a7230e91673.tar.gz |
bitbake.conf/base: Improve handling of SRCPV
If SRCPV is set, it can be expanded when SRC_URI doesn't support it
leading to errors. Avoid doing this by setting it only when it makes
sense.
This patch depends on the bitbake python expansion patch series.
[YCOTO #7772]
(From OE-Core rev: ce64da2b80f99c82d96513d8dfb5e572757b0cda)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index b307f387c0..3837b1e982 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -610,7 +610,8 @@ FETCHCMD_hg = "/usr/bin/env hg" | |||
610 | SRCDATE = "${DATE}" | 610 | SRCDATE = "${DATE}" |
611 | SRCREV ??= "INVALID" | 611 | SRCREV ??= "INVALID" |
612 | AUTOREV = "${@bb.fetch2.get_autorev(d)}" | 612 | AUTOREV = "${@bb.fetch2.get_autorev(d)}" |
613 | SRCPV = "${@bb.fetch2.get_srcrev(d)}" | 613 | # Set Dynamically in base.bbclass |
614 | # SRCPV = "${@bb.fetch2.get_srcrev(d)}" | ||
614 | SRCPV[vardepvalue] = "${SRCPV}" | 615 | SRCPV[vardepvalue] = "${SRCPV}" |
615 | 616 | ||
616 | SRC_URI = "" | 617 | SRC_URI = "" |