diff options
author | Yu Ke <ke.yu@intel.com> | 2010-12-27 13:28:09 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-06 10:37:30 +0000 |
commit | 9b5c770cbda8cfc4c108d94bd0ff5c0af3d0b64b (patch) | |
tree | c150b9d61eb9836d997865ccfd2432d864219505 /meta/recipes-devtools | |
parent | 601af9f8ead73e4c385162e820b877f18e5e6722 (diff) | |
download | openembedded-core-9b5c770cbda8cfc4c108d94bd0ff5c0af3d0b64b.tar.gz openembedded-core-9b5c770cbda8cfc4c108d94bd0ff5c0af3d0b64b.tar.bz2 openembedded-core-9b5c770cbda8cfc4c108d94bd0ff5c0af3d0b64b.zip |
recpies: use SRCPV instead of SRCREV for PV
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>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/opkg/opkg_svn.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb | 2 | ||||
-rw-r--r-- | meta/recipes-devtools/ubootchart/ubootchart_svn.bb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb b/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb index ce039e5aa1..8560f36c5b 100644 --- a/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb +++ b/meta/recipes-devtools/opkg-utils/opkg-utils_svn.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ file://opkg.py;beginline=1;endline=18;md5=15917491ad6bf7acc666ca5f7cc1e083" RDEPENDS_${PN} = "python" RDEPENDS_${PN}_virtclass-native = "" -PV = "0.1.8+svnr${SRCREV}" +PV = "0.1.8+svnr${SRCPV}" PR = "r2" SRC_URI = "svn://svn.openmoko.org/trunk/src/host/;module=opkg-utils;proto=http \ diff --git a/meta/recipes-devtools/opkg/opkg_svn.bb b/meta/recipes-devtools/opkg/opkg_svn.bb index 7a9e90e76b..5096345e4b 100644 --- a/meta/recipes-devtools/opkg/opkg_svn.bb +++ b/meta/recipes-devtools/opkg/opkg_svn.bb @@ -16,7 +16,7 @@ SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;proto=http \ S = "${WORKDIR}/trunk" -PV = "0.1.8+svnr${SRCREV}" +PV = "0.1.8+svnr${SRCPV}" PR = "r1" PACKAGES =+ "libopkg-dev libopkg update-alternatives-cworth" diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb index b4c70ec8b8..6f06a9c547 100644 --- a/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_svn.bb @@ -6,7 +6,7 @@ LICENSE = "EPLv1.0 | EDLv1.0" LIC_FILES_CHKSUM = "file://../epl-v10.html;md5=7aa4215a330a0a4f6a1cbf8da1a0879f \ file://../agent/edl-v10.html;md5=522a390a83dc186513f0500543ad3679" -PV = "0.3.0+svnr${SRCREV}" +PV = "0.3.0+svnr${SRCPV}" PR = "r0" SRC_URI = "svn://dev.eclipse.org/svnroot/dsdp/org.eclipse.tm.tcf/;module=tags/0.3.0/;proto=http \ diff --git a/meta/recipes-devtools/ubootchart/ubootchart_svn.bb b/meta/recipes-devtools/ubootchart/ubootchart_svn.bb index 28a9e6f680..c16be822da 100644 --- a/meta/recipes-devtools/ubootchart/ubootchart_svn.bb +++ b/meta/recipes-devtools/ubootchart/ubootchart_svn.bb @@ -2,7 +2,7 @@ DESCRIPTION = "A boot profiling tool" HOMEPAGE = "http://code.google.com/p/ubootchart/" LICENSE = "GPLv3" LIC_FILES_CHKSUM = "file://COPYING;md5=8f0e2cd40e05189ec81232da84bd6e1a" -PV = "0.0+r${SRCREV}" +PV = "0.0+r${SRCPV}" PR = "r5" #RRECOMMENDS_${PN} = "acct" |