From 384a78213203f1eb0024c21a1cec9723df8da5ea Mon Sep 17 00:00:00 2001 From: "Dennis E. Mungai" <2356871+Brainiarc7@users.noreply.github.com> Date: Tue, 6 Feb 2024 03:32:03 +0300 Subject: [PATCH] Correct the upstream URL for libva Libva is fetched from the release tarballs, whose URL has changed. Update this to point to the correct URL pattern upstream. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6b42350..70ab781 100644 --- a/Dockerfile +++ b/Dockerfile @@ -274,7 +274,7 @@ RUN \ echo "**** grabbing libva ****" && \ mkdir -p /tmp/libva && \ curl -Lf \ - https://github.com/intel/libva/archive/${LIBVA}.tar.gz | \ + https://github.com/intel/libva/archive/refs/tags/${LIBVA}.tar.gz | \ tar -zx --strip-components=1 -C /tmp/libva RUN \ echo "**** compiling libva ****" && \