mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 06:32:11 +02:00
Our patches were rather out of sync, update the line offsets to match the current patchset/underlying code. (From OE-Core rev: f3a98cbd1c17ec25593ac11149d81ab80156a101) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From: Mingli Yu <mingli.yu@windriver.com>
|
|
Subject: [PATCH 10/12] Makefile.am: make sure autoheader run before automake
|
|
|
|
When use automake to generate Makefile.in from Makefile.am, there
|
|
comes below race:
|
|
| configure.ac:45: error: required file 'config-h.in' not found
|
|
|
|
It is because the file config-h.in in updating process by autoheader,
|
|
so make automake run after autoheader to avoid the above race.
|
|
|
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
|
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
|
|
Upstream-Status: Backport [https://git.savannah.gnu.org/cgit/libtool.git/commit/?id=e01c0bfe5e041418d84460901a1a5b11b89d596f]
|
|
|
|
Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
|
|
|
|
diff --git a/Makefile.am b/Makefile.am
|
|
index 9c34bfd..231ef3f 100644
|
|
--- a/Makefile.am
|
|
+++ b/Makefile.am
|
|
@@ -333,7 +333,7 @@ EXTRA_DIST += $(lt_aclocal_m4) \
|
|
$(lt_obsolete_m4) \
|
|
$(stamp_mk)
|
|
|
|
-$(lt_Makefile_in): $(lt_Makefile_am) $(lt_aclocal_m4)
|
|
+$(lt_Makefile_in): $(lt_Makefile_am) $(lt_aclocal_m4) $(lt_config_h_in)
|
|
$(AM_V_GEN)cd '$(srcdir)/$(ltdl_dir)' && $(AUTOMAKE) Makefile
|
|
|
|
# Don't let unused scripts leak into the libltdl Makefile
|
|
--
|
|
2.25.1
|
|
|