[vlc-commits] commit: contribs: make sure vpx destdir are created (use mkdir -p) ( Rafaël Carré )

git at videolan.org git at videolan.org
Sun Oct 31 21:06:22 CET 2010


vlc | branch: master | Rafaël Carré <rafael.carre at gmail.com> | Sun Oct 31 21:06:02 2010 +0100| [c83a35596c289343bc79eef0953cd658291ca5f5] | committer: Rafaël Carré 

contribs: make sure vpx destdir are created (use mkdir -p)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c83a35596c289343bc79eef0953cd658291ca5f5
---

 extras/contrib/src/contrib-src.mak |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/extras/contrib/src/contrib-src.mak b/extras/contrib/src/contrib-src.mak
index 3083322..9627a0f 100644
--- a/extras/contrib/src/contrib-src.mak
+++ b/extras/contrib/src/contrib-src.mak
@@ -974,7 +974,7 @@ endif
 
 .libvpx: libvpx
 	(cd $<; CROSS=$(CROSS) ./configure --target=$(VPX_TARGET) --disable-install-bins --disable-install-srcs --disable-install-libs --disable-examples && make && make install)
-	(rm -rf $(PREFIX)/include/vpx/ && mkdir $(PREFIX)/include/vpx/; cd $< && cp vpx/*.h vpx_ports/*.h $(PREFIX)/include/vpx/) # Of course, why the hell would one expect it to be listed or in make install?
+	(rm -rf $(PREFIX)/include/vpx/ && mkdir -p $(PREFIX)/include/vpx/; cd $< && cp vpx/*.h vpx_ports/*.h $(PREFIX)/include/vpx/) # Of course, why the hell would one expect it to be listed or in make install?
 	rm $(PREFIX)/include/vpx/config.h
 	(cd $<; $(RANLIB) libvpx.a && mkdir -p $(PREFIX)/lib && cp libvpx.a $(PREFIX)/lib/) # Of course, why the hell would one expect it to be listed or in make install?
 	touch $@



More information about the vlc-commits mailing list