1 From: Mingli Yu <mingli.yu@windriver.com>
2 Subject: [PATCH 10/12] Makefile.am: make sure autoheader run before automake
4 When use automake to generate Makefile.in from Makefile.am, there
6 | configure.ac:45: error: required file 'config-h.in' not found
8 It is because the file config-h.in in updating process by autoheader,
9 so make automake run after autoheader to avoid the above race.
11 Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
12 Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 Upstream-Status: Submitted [https://lists.gnu.org/archive/html/libtool-patches/2021-10/msg00020.html]
16 Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
19 1 file changed, 1 insertion(+), 1 deletion(-)
21 diff --git a/Makefile.am b/Makefile.am
22 index 2752ecc..29950db 100644
25 @@ -328,7 +328,7 @@ EXTRA_DIST += $(lt_aclocal_m4) \
29 -$(lt_Makefile_in): $(lt_Makefile_am) $(lt_aclocal_m4)
30 +$(lt_Makefile_in): $(lt_Makefile_am) $(lt_aclocal_m4) $(lt_config_h_in)
31 $(AM_V_GEN)cd '$(srcdir)/$(ltdl_dir)' && $(AUTOMAKE) Makefile
33 # Don't let unused scripts leak into the libltdl Makefile