From: Robert Joslyn Date: Sun, 4 Sep 2022 18:53:36 +0000 (-0700) Subject: xorg-lib-common: Add variable to set tarball type X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3037 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6a8068e036b4b2a40b38896275b936916b4db76e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Robert Joslyn Signed-off-by: Alexandre Belloni --- diff --git a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc index 60bc8c76fac..68137c41470 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" DEPENDS = "util-macros" XORG_PN = "${BPN}" +XORG_EXT ?= "tar.bz2" -SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.tar.bz2" +SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.${XORG_EXT}" S = "${WORKDIR}/${XORG_PN}-${PV}"