diff mbox

autotools.bbclass: Change acpaths defaults to be a weak assignment

Message ID 20170123223954.12039-1-raj.khem@gmail.com
State Accepted
Commit 57be81156f74666ff2ed2755f5faa48edf00e4dc
Headers show

Commit Message

Khem Raj Jan. 23, 2017, 10:39 p.m. UTC
We currently have to override the default setting using a particular
assignment order in the recipe, setting it weakly helps to get rid
of this problem.

Signed-off-by: Khem Raj <raj.khem@gmail.com>

---
 meta/classes/autotools.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.11.0

-- 
_______________________________________________
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core
diff mbox

Patch

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 3741d09706..da5ec27575 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -27,7 +27,7 @@  inherit siteinfo
 # results for autoconf tests we cannot run at build time.
 export CONFIG_SITE = "${@siteinfo_get_files(d)}"
 
-acpaths = "default"
+acpaths ?= "default"
 EXTRA_AUTORECONF = "--exclude=autopoint"
 
 export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}"