diff options
author | Peter Kjellerstedt <peter.kjellerstedt@axis.com> | 2023-10-03 03:05:29 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-10-06 11:51:11 +0100 |
commit | 23f4bb7710f031ff5eafdbb0c50c11a1705f9eb2 (patch) | |
tree | 92ae8216a32ffe1af3f7e2b33ba526d0a39d9925 /meta/classes-recipe | |
parent | d066ec92dc6453b372cf5796f43c484400c060e8 (diff) | |
download | poky-23f4bb7710f031ff5eafdbb0c50c11a1705f9eb2.tar.gz |
autotools.bbclass: Add *.m4 to CONFIGURE_FILES
This makes do_configure depend on changes to any m4 file when
externalsrc is active.
(From OE-Core rev: 492559191943c9e2666c3dda1824c5aafbe487d5)
Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r-- | meta/classes-recipe/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-recipe/autotools.bbclass b/meta/classes-recipe/autotools.bbclass index a4c1c4be41..5ed21a3d68 100644 --- a/meta/classes-recipe/autotools.bbclass +++ b/meta/classes-recipe/autotools.bbclass | |||
@@ -157,7 +157,7 @@ python autotools_aclocals () { | |||
157 | 157 | ||
158 | do_configure[file-checksums] += "${@' '.join(siteinfo_get_files(d, sysrootcache=False)[1])}" | 158 | do_configure[file-checksums] += "${@' '.join(siteinfo_get_files(d, sysrootcache=False)[1])}" |
159 | 159 | ||
160 | CONFIGURE_FILES = "${S}/configure.in ${S}/configure.ac ${S}/config.h.in ${S}/acinclude.m4 Makefile.am" | 160 | CONFIGURE_FILES = "${S}/configure.in ${S}/configure.ac ${S}/config.h.in *.m4 Makefile.am" |
161 | 161 | ||
162 | autotools_do_configure() { | 162 | autotools_do_configure() { |
163 | # WARNING: gross hack follows: | 163 | # WARNING: gross hack follows: |