Commit ce9519fb authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Contrib: vpx small fix

parent 4b9c63a3
...@@ -919,9 +919,7 @@ libvpx-$(VPX_VERSION).tar.bz2: ...@@ -919,9 +919,7 @@ libvpx-$(VPX_VERSION).tar.bz2:
vpx: libvpx-$(VPX_VERSION).tar.bz2 vpx: libvpx-$(VPX_VERSION).tar.bz2
$(EXTRACT_BZ2) $(EXTRACT_BZ2)
ifneq ($(HOST),$(BUILD))
patch -p0 < Patches/libvpx-cross.patch patch -p0 < Patches/libvpx-cross.patch
endif
ifdef HAVE_WIN32 ifdef HAVE_WIN32
VPX_TARGET=x86-win32-gcc VPX_TARGET=x86-win32-gcc
...@@ -932,6 +930,7 @@ endif ...@@ -932,6 +930,7 @@ endif
.vpx: vpx .vpx: vpx
(cd $<; ./configure --target=$(VPX_TARGET) --disable-install-bins --disable-install-srcs --disable-install-libs --disable-examples && XCC=$(CC) XNM=$(NM) XSTRIP=$(STRIP) make && make install) (cd $<; ./configure --target=$(VPX_TARGET) --disable-install-bins --disable-install-srcs --disable-install-libs --disable-examples && XCC=$(CC) XNM=$(NM) XSTRIP=$(STRIP) make && make install)
(cd $<; cp vp8/*.h vpx_codec/*.h vpx_port/*.h $(PREFIX)/include) # Of course, why the hell would one expect it to be listed or in make install? (cd $<; cp vp8/*.h vpx_codec/*.h vpx_port/*.h $(PREFIX)/include) # Of course, why the hell would one expect it to be listed or in make install?
rm $(PREFIX)/include/config.h
(cd $<; $(RANLIB) libvpx.a && cp libvpx.a $(PREFIX)/lib) # Of course, why the hell would one expect it to be listed or in make install? (cd $<; $(RANLIB) libvpx.a && cp libvpx.a $(PREFIX)/lib) # Of course, why the hell would one expect it to be listed or in make install?
touch $@ 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