diff options
author | Ross Burton <ross.burton@arm.com> | 2024-01-10 13:07:23 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-01-12 11:54:05 +0000 |
commit | 3c72b2d7118c7260a80c0c94edc921edb3b31e2a (patch) | |
tree | ff1a4970d46886cfb90f0a2311f929bbe072d904 /meta/classes-recipe | |
parent | e7ce961d369c3e5ae813d962303d419510a3f6e6 (diff) | |
download | poky-3c72b2d7118c7260a80c0c94edc921edb3b31e2a.tar.gz |
autotools: append to EXTRA_AUTORECONF
Inherit order may mean that this class is inherited after assignments,
so extend instead of assign EXTRA_AUTORECONF.
(From OE-Core rev: 83958b4bdea90a0bb9331d33c2f266900a108fee)
Signed-off-by: Ross Burton <ross.burton@arm.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 1663307b06..12881a31ec 100644 --- a/meta/classes-recipe/autotools.bbclass +++ b/meta/classes-recipe/autotools.bbclass | |||
@@ -37,7 +37,7 @@ inherit siteinfo | |||
37 | export CONFIG_SITE | 37 | export CONFIG_SITE |
38 | 38 | ||
39 | acpaths ?= "default" | 39 | acpaths ?= "default" |
40 | EXTRA_AUTORECONF = "--exclude=autopoint --exclude=gtkdocize" | 40 | EXTRA_AUTORECONF += "--exclude=autopoint --exclude=gtkdocize" |
41 | 41 | ||
42 | export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}" | 42 | export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}" |
43 | 43 | ||