[vlc-commits] extras/tools: libtool don't use autoreconf too early

Konstantin Pavlov git at videolan.org
Wed Oct 30 18:18:05 CET 2019


vlc | branch: master | Konstantin Pavlov <thresh at videolan.org> | Wed Oct 30 20:13:55 2019 +0300| [f3511a70314565e3ff48827e400e7869dfe20577] | committer: Konstantin Pavlov

extras/tools: libtool don't use autoreconf too early

.buildlibtool dependencies make sure we have autoconf and automake
installed, which is not guaranteed on unpacking target.
tage.

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

 extras/tools/tools.mak | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/extras/tools/tools.mak b/extras/tools/tools.mak
index 937a324331..c66bd5433d 100644
--- a/extras/tools/tools.mak
+++ b/extras/tools/tools.mak
@@ -131,10 +131,10 @@ libtool: libtool-$(LIBTOOL_VERSION).tar.gz
 	$(APPLY) $(TOOLS)/libtool-2.4.6-san.patch
 	$(APPLY) $(TOOLS)/libtool-2.4.6-clang-libs.patch
 	$(APPLY) $(TOOLS)/libtool-2.4.6-response-files.patch
-	(cd $(UNPACK_DIR) && autoreconf -fv)
 	$(MOVE)
 
 .buildlibtool: libtool .automake .help2man
+	(cd $(UNPACK_DIR) && autoreconf -fv)
 	(cd $<; ./configure --prefix=$(PREFIX) && $(MAKE) && $(MAKE) install)
 	ln -sf libtool $(PREFIX)/bin/glibtool
 	ln -sf libtoolize $(PREFIX)/bin/glibtoolize



More information about the vlc-commits mailing list