From 89035772274f3275ff9ff6906e81c40f090e0c32 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 22 Feb 2020 11:19:38 +0000 Subject: [PATCH] Update native libraries shipped in the AppImages: * SDL2 reverted back to 2.0.8 (2.0.9 and 2.0.10 generate compilation errors so are missing from the libs tarball) * Package Freetype 2.0.10 --- packaging/linux/buildpackage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/linux/buildpackage.sh b/packaging/linux/buildpackage.sh index f49f05a458..05e7656149 100755 --- a/packaging/linux/buildpackage.sh +++ b/packaging/linux/buildpackage.sh @@ -7,7 +7,7 @@ command -v python >/dev/null 2>&1 || { echo >&2 "Linux packaging requires python command -v tar >/dev/null 2>&1 || { echo >&2 "Linux packaging requires tar."; exit 1; } command -v curl >/dev/null 2>&1 || command -v wget > /dev/null 2>&1 || { echo >&2 "Linux packaging requires curl or wget."; exit 1; } -DEPENDENCIES_TAG="20200202" +DEPENDENCIES_TAG="20200222" if [ $# -eq "0" ]; then echo "Usage: $(basename "$0") version [outputdir]"