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-graphics/xcb | |
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-graphics/xcb')
-rw-r--r-- | meta/recipes-graphics/xcb/libxcb_git.bb | 2 | ||||
-rw-r--r-- | meta/recipes-graphics/xcb/xcb-proto_git.bb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-graphics/xcb/libxcb_git.bb b/meta/recipes-graphics/xcb/libxcb_git.bb index b9ac073410..faa52317c2 100644 --- a/meta/recipes-graphics/xcb/libxcb_git.bb +++ b/meta/recipes-graphics/xcb/libxcb_git.bb @@ -1,7 +1,7 @@ DEFAULT_PREFERENCE = "-1" include libxcb.inc -PV = "1.1.90.1+gitr${SRCREV}" +PV = "1.1.90.1+gitr${SRCPV}" DEPENDS += "libpthread-stubs xcb-proto-native" diff --git a/meta/recipes-graphics/xcb/xcb-proto_git.bb b/meta/recipes-graphics/xcb/xcb-proto_git.bb index b96fc121c5..e4c238cfc7 100644 --- a/meta/recipes-graphics/xcb/xcb-proto_git.bb +++ b/meta/recipes-graphics/xcb/xcb-proto_git.bb @@ -1,7 +1,7 @@ DEFAULT_PREFERENCE = "-1" include xcb-proto.inc -PV = "1.2+gitr${SRCREV}" +PV = "1.2+gitr${SRCPV}" PR = "r1" SRC_URI = "git://anongit.freedesktop.org/git/xcb/proto;protocol=git" |