From: Jean-Baptiste Kempf Date: Thu, 20 May 2010 17:10:55 +0000 (+0200) Subject: Contribs: more includes copying and ranlib on libvpx X-Git-Tag: 1.2.0-pre1~6584 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=9a84bdeb76c33e746ba8e7bb77ad87efd3d5c334;p=vlc Contribs: more includes copying and ranlib on libvpx --- diff --git a/extras/contrib/src/Makefile b/extras/contrib/src/Makefile index 411e4355bc..9441a41498 100644 --- a/extras/contrib/src/Makefile +++ b/extras/contrib/src/Makefile @@ -931,8 +931,8 @@ endif .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 $<; cp vp8/*.h vpx_codec/*.h $(PREFIX)/include) # Of course, why the hell would one expect it to be listed or in make install? - (cd $<; cp libvpx.a $(PREFIX)/lib) # 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? + (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 $@ CLEAN_FILE += .vpx