From: Mingli Yu Date: Wed, 24 Mar 2021 03:21:04 +0000 (+0800) Subject: build: make sure autoheader run before autoconf X-Git-Tag: v2.5.0~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e7dc729dd27b367905cd0ce52b5466d91537857a;p=thirdparty%2Flibtool.git build: make sure autoheader run before autoconf autoheader will update ../libtool-2.4.6/libltdl/config-h.in which autoconf needs, so there comes a race sometimes as below: | configure.ac:45: error: required file 'config-h.in' not found | touch '../libtool-2.4.6/libltdl/config-h.in' So make sure autoheader run before autoconf to avoid this race. * Makefile.am: Have $(lt_configure) depend on $(lt_config_h_in). Signed-off-by: Mingli Yu --- diff --git a/Makefile.am b/Makefile.am index 74e1e28fe..2a4f13ad2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -370,7 +370,7 @@ lt_configure_deps = $(lt_aclocal_m4) $(lt_aclocal_m4_deps) $(lt_aclocal_m4): $(lt_aclocal_m4_deps) $(AM_V_GEN)cd '$(srcdir)/$(ltdl_dir)' && $(ACLOCAL) -I ../m4 -$(lt_configure): $(lt_configure_deps) +$(lt_configure): $(lt_configure_deps) $(lt_config_h_in) $(AM_V_GEN)cd '$(srcdir)/$(ltdl_dir)' && $(AUTOCONF) $(lt_config_h_in): $(lt_configure_deps)