mirror of
https://git.yoctoproject.org/poky
synced 2026-04-29 09:32:11 +02:00
SRCPV is intended being used by PV, some recipes still use SRCREV for PV, which is not correct. This patch fix all the misusage. Signed-off-by: Yu Ke <ke.yu@intel.com>
18 lines
416 B
BlitzBasic
18 lines
416 B
BlitzBasic
require libmatchbox.inc
|
|
|
|
PV = "1.7+svnr${SRCPV}"
|
|
PR = "r5"
|
|
DEFAULT_PREFERENCE = "-1"
|
|
|
|
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http \
|
|
file://configure_fixes.patch;patch=1 \
|
|
file://check.m4 \
|
|
file://16bppfixes.patch;patch=1 \
|
|
file://matchbox-start-fix.patch;patch=1"
|
|
|
|
S = "${WORKDIR}/libmatchbox"
|
|
|
|
do_configure_prepend () {
|
|
cp ${WORKDIR}/check.m4 ${S}/
|
|
}
|