[vlc-commits] contrib: make sure aclocal directory exists before autoreconf

Rémi Denis-Courmont git at videolan.org
Sun Jul 3 13:45:36 CEST 2011


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Jul  3 14:44:56 2011 +0300| [4b1c0e54ff41bb2f585ce5d5ed104c4e70ec34f9] | committer: Rémi Denis-Courmont

contrib: make sure aclocal directory exists before autoreconf

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

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

diff --git a/contrib/src/main.mak b/contrib/src/main.mak
index 2753cd9..aa35d70 100644
--- a/contrib/src/main.mak
+++ b/contrib/src/main.mak
@@ -184,7 +184,8 @@ UNPACK_DIR = $(basename $(basename $(notdir $<)))
 APPLY = (cd $(UNPACK_DIR) && patch -p1) <
 MOVE = mv $(UNPACK_DIR) $@ && touch $@
 
-RECONF = cd $< && autoreconf -fiv $(ACLOCAL_AMFLAGS)
+RECONF = mkdir -p -- $(PREFIX)/share/aclocal && \
+	cd $< && autoreconf -fiv $(ACLOCAL_AMFLAGS)
 CMAKE = cmake . -DCMAKE_TOOLCHAIN_FILE=$(abspath toolchain.cmake) \
 		-DCMAKE_INSTALL_PREFIX=$(PREFIX)
 



More information about the vlc-commits mailing list