]> git.ipfire.org Git - thirdparty/libtool.git/commit
build: make sure autoheader run before autoconf
authorMingli Yu <mingli.yu@windriver.com>
Wed, 24 Mar 2021 03:21:04 +0000 (11:21 +0800)
committerMike Frysinger <vapier@gentoo.org>
Sun, 14 Jan 2024 06:23:38 +0000 (01:23 -0500)
commite7dc729dd27b367905cd0ce52b5466d91537857a
tree8bf96b2a54cb69291ede5debf5fe456b86b8d8ca
parentefbb2e77dfcf45871ab32c7ed68a9b34505e0732
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 <mingli.yu@windriver.com>
Makefile.am