From ccddfbe82007b99668fcd0b00d3a25dea9278bbc Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sat, 26 Mar 2016 20:46:49 +0100 Subject: [PATCH] Makefile.ffmpeg: try to fix target for libvpx for i686 (2nd) --- Makefile.ffmpeg | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile.ffmpeg b/Makefile.ffmpeg index 871f412b2..8e5f74949 100644 --- a/Makefile.ffmpeg +++ b/Makefile.ffmpeg @@ -20,7 +20,8 @@ DIR := $(dir $(lastword $(MAKEFILE_LIST))) include $(DIR)/.config.mk ifneq (,$(filter i386 i486 i586 i686 pentium,$(ARCH))) -FFMPEG_TARGET := $(ARCH)-linux-gnu +FFMPEG_HOST := $(ARCH)-linux-gnu +FFMPEG_TARGET := x86-linux-gnu endif unexport CFLAGS @@ -159,8 +160,8 @@ LIBX264_HOST := --host=$(DEB_BUILD_GNU_TYPE) endif ifeq (,$(LIBX264_HOST)) -ifneq (,$(FFMPEG_TARGET)) -LIBX264_HOST := --host=$(FFMPEG_TARGET) +ifneq (,$(FFMPEG_HOST)) +LIBX264_HOST := --host=$(FFMPEG_HOST) endif endif -- 2.47.3