Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Makefile.ffmpeg: try to fix target for libvpx for i686 (2nd)
  • Loading branch information
perexg committed Mar 26, 2016
1 parent 5be888d commit ccddfbe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile.ffmpeg
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit ccddfbe

Please sign in to comment.