summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libtool/libtool/0001-Makefile.am-make-sure-autoheader-run-before-automake.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool/0001-Makefile.am-make-sure-autoheader-run-before-automake.patch')
-rw-r--r--meta/recipes-devtools/libtool/libtool/0001-Makefile.am-make-sure-autoheader-run-before-automake.patch35
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool/0001-Makefile.am-make-sure-autoheader-run-before-automake.patch b/meta/recipes-devtools/libtool/libtool/0001-Makefile.am-make-sure-autoheader-run-before-automake.patch
new file mode 100644
index 0000000000..87f8492346
--- /dev/null
+++ b/meta/recipes-devtools/libtool/libtool/0001-Makefile.am-make-sure-autoheader-run-before-automake.patch
@@ -0,0 +1,35 @@
1From e82c06584f02e3e4487aa73aa05981e2a35dc6d1 Mon Sep 17 00:00:00 2001
2From: Mingli Yu <mingli.yu@windriver.com>
3Date: Tue, 13 Apr 2021 07:17:29 +0000
4Subject: [PATCH] Makefile.am: make sure autoheader run before automake
5
6When use automake to generate Makefile.in from Makefile.am, there
7comes below race:
8 | configure.ac:45: error: required file 'config-h.in' not found
9
10It is because the file config-h.in in updating process by autoheader,
11so make automake run after autoheader to avoid the above race.
12
13Upstream-Status: Submitted [libtool-patches@gnu.org maillist]
14
15Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
16---
17 Makefile.am | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20diff --git a/Makefile.am b/Makefile.am
21index 2752ecc..29950db 100644
22--- a/Makefile.am
23+++ b/Makefile.am
24@@ -328,7 +328,7 @@ EXTRA_DIST += $(lt_aclocal_m4) \
25 $(lt_obsolete_m4) \
26 $(stamp_mk)
27
28-$(lt_Makefile_in): $(lt_Makefile_am) $(lt_aclocal_m4)
29+$(lt_Makefile_in): $(lt_Makefile_am) $(lt_aclocal_m4) $(lt_config_h_in)
30 $(AM_V_GEN)cd '$(srcdir)/$(ltdl_dir)' && $(AUTOMAKE) Makefile
31
32 # Don't let unused scripts leak into the libltdl Makefile
33--
342.29.2
35