mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 01:36:38 +01:00
While wildcard in INCOMPATIBLE_LICENSE, such as INCOMPATIBLE_LICENSE = "*GPL-3", PREFERRED_VERSION_db-native could have the correct value "5.%" [YOCTO #5592] (From OE-Core rev: fddca246f15ff72828a0198d8c4d3e58d8bf4442) Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
508 B
PHP
16 lines
508 B
PHP
#
|
|
# Default preferred versions
|
|
#
|
|
|
|
# Force the python versions in one place
|
|
PYTHON_BASEVERSION ?= "2.7"
|
|
PREFERRED_VERSION_python ?= "2.7.3"
|
|
PREFERRED_VERSION_python-native ?= "2.7.3"
|
|
|
|
# Force the older version of liberation-fonts until we fix the fontforge issue
|
|
PREFERRED_VERSION_liberation-fonts ?= "1.04"
|
|
|
|
# Force db-native's version to keep sync with db while
|
|
# 'AGPL-3.0' in ${INCOMPATIBLE_LICENSE} blacklist
|
|
PREFERRED_VERSION_db-native = "${@incompatible_license_contains('AGPL-3.0', '5.%', '6.%', d)}"
|