diff options
author | Robert Joslyn <robert.joslyn@redrectangle.org> | 2022-09-04 11:53:36 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-05 16:49:01 +0100 |
commit | d40d17685af16667e0180fd6937fd377c1c640bd (patch) | |
tree | 1a8e1c97c9bdd7b285f21309819229f2b79e788d /meta/recipes-graphics | |
parent | 682a93f1e9531f6ded84380cd01f28b4fbefe9bb (diff) | |
download | poky-d40d17685af16667e0180fd6937fd377c1c640bd.tar.gz |
xorg-lib-common: Add variable to set tarball type
Upstream has switched some new releases from bz2 to xz compression. Add
an XORG_EXT variable so recipes can set the file name extension needed
for the compression type.
(From OE-Core rev: 6a8068e036b4b2a40b38896275b936916b4db76e)
Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/xorg-lib-common.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc index 60bc8c76fa..68137c4147 100644 --- a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc +++ b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc | |||
@@ -6,8 +6,9 @@ LICENSE = "MIT" | |||
6 | DEPENDS = "util-macros" | 6 | DEPENDS = "util-macros" |
7 | 7 | ||
8 | XORG_PN = "${BPN}" | 8 | XORG_PN = "${BPN}" |
9 | XORG_EXT ?= "tar.bz2" | ||
9 | 10 | ||
10 | SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.tar.bz2" | 11 | SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.${XORG_EXT}" |
11 | 12 | ||
12 | S = "${WORKDIR}/${XORG_PN}-${PV}" | 13 | S = "${WORKDIR}/${XORG_PN}-${PV}" |
13 | 14 | ||