diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-06-05 22:34:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-06-12 10:58:22 +0100 |
commit | 99822cd4a01342565f803678baba49d74192b7d1 (patch) | |
tree | fc26b423055fe5e528a602940ea5578cfe11ffc7 /meta | |
parent | 60543b931d073e17ad935aacfbd0d4eba76e2360 (diff) | |
download | ast2050-yocto-poky-99822cd4a01342565f803678baba49d74192b7d1.zip ast2050-yocto-poky-99822cd4a01342565f803678baba49d74192b7d1.tar.gz |
gnomebase: add GNOME_COMPRESS_TYPE variable
Upstream Gnome projects are starting to migrate to the .xz compress format,
so we need to add this to allow recipes to override the default of .bz2 as
the upstreams make the transition.
[YOCTO #2241]
(From OE-Core rev: 0eddc176e73e74d4b1a7d3163d65f619fcd4baf0)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/gnomebase.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/gnomebase.bbclass b/meta/classes/gnomebase.bbclass index a4209a0..80b78be 100644 --- a/meta/classes/gnomebase.bbclass +++ b/meta/classes/gnomebase.bbclass @@ -3,8 +3,9 @@ def gnome_verdir(v): m = re.match("^([0-9]+)\.([0-9]+)", v) return "%s.%s" % (m.group(1), m.group(2)) +GNOME_COMPRESS_TYPE ?= "bz2" SECTION ?= "x11/gnome" -SRC_URI = "${GNOME_MIRROR}/${BPN}/${@gnome_verdir("${PV}")}/${BPN}-${PV}.tar.bz2;name=archive" +SRC_URI = "${GNOME_MIRROR}/${BPN}/${@gnome_verdir("${PV}")}/${BPN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive" DEPENDS += "gnome-common" |