]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Makefile.ffmpeg: try to fix target for libvpx for i686 (2nd)
authorJaroslav Kysela <perex@perex.cz>
Sat, 26 Mar 2016 19:46:49 +0000 (20:46 +0100)
committerJaroslav Kysela <perex@perex.cz>
Sat, 26 Mar 2016 19:46:49 +0000 (20:46 +0100)
Makefile.ffmpeg

index 871f412b2259c78709e11ca95ad2854db5ba2779..8e5f7494989b5a94e08e19bc530d3a5f1e4a96e7 100644 (file)
@@ -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