Commit 99e59bbe authored by Bernie Purcell's avatar Bernie Purcell

Fix cross compile of x264. The --crosscompile switch being added by the patch...

Fix cross compile of x264. The --crosscompile switch being added by the patch doesn't appear to have worked for some time.
parent 2cde647a
......@@ -102,7 +102,7 @@ ifneq ($(BUILD),$(HOST))
ifndef HAVE_CYGWIN
# We are REALLY cross compiling
FFMPEGCONF=--cross-prefix=$(HOST)- --cross-compile
X264CONF=--crosscompile=$(HOST)
X264CONF=--host=$(HOST)
PTHREADSCONF="CROSS=$(HOST)-"
else
# We are compiling for MinGW on Cygwin
......@@ -1328,10 +1328,10 @@ endif
ifdef HAVE_WIN32
.x264: x264 .pthreads
(cd $<; ./configure $(X264CONF) --prefix="$(PREFIX)" && make && make install)
(cd $<; $(HOSTCC) ./configure $(X264CONF) --prefix="$(PREFIX)" && make && make install)
else
.x264: x264
(cd $<; ./configure $(X264CONF) --prefix="$(PREFIX)" && make && make install)
(cd $<; $(HOSTCC) ./configure $(X264CONF) --prefix="$(PREFIX)" && make && make install)
endif
touch $@
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment