From 3f373ee7a6e362bbbffe3867a07edd1d88489aa0 Mon Sep 17 00:00:00 2001 From: Tibor Nagy <xnagytibor@gmail.com> Date: Sun, 10 Sep 2017 05:03:10 +0200 Subject: [PATCH] ffmpeg: Switch to a working release branch, fix hardcoded arch --- recipes/ffmpeg/recipe.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipes/ffmpeg/recipe.sh b/recipes/ffmpeg/recipe.sh index 25ec130da..565577dce 100644 --- a/recipes/ffmpeg/recipe.sh +++ b/recipes/ffmpeg/recipe.sh @@ -1,4 +1,5 @@ GIT=https://github.com/FFmpeg/FFmpeg +BRANCH=release/3.3 function recipe_update { echo "skipping update" @@ -9,8 +10,8 @@ function recipe_build { ./configure \ --enable-cross-compile \ --target-os=redox \ - --arch=x86_64 \ - --cross_prefix=x86_64-unknown-redox- \ + --arch=${ARCH} \ + --cross_prefix=${HOST}- \ --prefix=/ \ --disable-network make -- GitLab