mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
I went through and cleaned up the headers/descriptions on several of the libtool patchset and submitted (or resubmitted in some cases) them upstream. This patch updates/renames them to match what I did. I did fix some whitespace issues in some of the patches and also merged one case where we had a patch of already patched code. This makes it clear what was submitted and makes resubmission easier if ever needed too. (From OE-Core rev: 9bb9a4e8bd408c7a42913aa3e1ec541919b59584) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
36 lines
1.2 KiB
Diff
36 lines
1.2 KiB
Diff
From: Mingli Yu <mingli.yu@windriver.com>
|
|
Subject: [PATCH 09/12] Makefile.am: 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.
|
|
|
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
|
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
Upstream-Status: Submitted [https://lists.gnu.org/archive/html/libtool-patches/2021-10/msg00015.html]
|
|
|
|
---
|
|
Makefile.am | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 4142c90..fe1a9fc 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -365,7 +365,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)
|
|
--
|
|
2.29.2
|
|
|