summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2017-01-23 14:39:54 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-01-26 10:44:27 +0000
commit27c106e087916b5e05b1b4663c6e121ad42a9281 (patch)
tree12981c8752dde66eaf0f5745c445aa50f246e893 /meta/classes/autotools.bbclass
parentda114c7d7d69b5795cd574d117d961599f72f4cc (diff)
downloadpoky-27c106e087916b5e05b1b4663c6e121ad42a9281.tar.gz
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. (From OE-Core rev: 57be81156f74666ff2ed2755f5faa48edf00e4dc) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass2
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
27# results for autoconf tests we cannot run at build time. 27# results for autoconf tests we cannot run at build time.
28export CONFIG_SITE = "${@siteinfo_get_files(d)}" 28export CONFIG_SITE = "${@siteinfo_get_files(d)}"
29 29
30acpaths = "default" 30acpaths ?= "default"
31EXTRA_AUTORECONF = "--exclude=autopoint" 31EXTRA_AUTORECONF = "--exclude=autopoint"
32 32
33export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}" 33export lt_cv_sys_lib_dlsearch_path_spec = "${libdir} ${base_libdir}"