diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-01-23 14:39:54 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-26 10:41:09 +0000 |
commit | 57be81156f74666ff2ed2755f5faa48edf00e4dc (patch) | |
tree | db61b99d18d6e398e6081eb9e98434b66a3dc797 | |
parent | e20343a90e401bc92167867729076d321081d120 (diff) | |
download | openembedded-core-57be81156f74666ff2ed2755f5faa48edf00e4dc.tar.gz openembedded-core-57be81156f74666ff2ed2755f5faa48edf00e4dc.tar.bz2 openembedded-core-57be81156f74666ff2ed2755f5faa48edf00e4dc.zip |
autotools.bbclass: Change acpaths defaults to be a weak assignment
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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/autotools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
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}" |