From 83958b4bdea90a0bb9331d33c2f266900a108fee Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 10 Jan 2024 13:07:23 +0000 Subject: [PATCH] autotools: append to EXTRA_AUTORECONF Inherit order may mean that this class is inherited after assignments, so extend instead of assign EXTRA_AUTORECONF. Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/classes-recipe/autotools.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/classes-recipe/autotools.bbclass b/meta/classes-recipe/autotools.bbclass index 1663307b061..12881a31ec9 100644 --- a/meta/classes-recipe/autotools.bbclass +++ b/meta/classes-recipe/autotools.bbclass @@ -37,7 +37,7 @@ inherit siteinfo export CONFIG_SITE acpaths ?= "default" -EXTRA_AUTORECONF = "--exclude=autopoint --exclude=gtkdocize" +EXTRA_AUTORECONF += "--exclude=autopoint --exclude=gtkdocize" export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}" -- 2.47.2