aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRoy Li <rongqing.li@windriver.com>2015-08-26 13:51:18 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-30 12:34:26 +0100
commit758abeb219520ab5556186babcdb7e6660ce6e40 (patch)
tree596ffcd18511014062919e733b6c54ac35a60bec /meta/classes/autotools.bbclass
parent7bbe24f19e6005eccefd404b3a6d5d9443dd5b36 (diff)
downloadopenembedded-core-contrib-758abeb219520ab5556186babcdb7e6660ce6e40.tar.gz
autotools.bbclass: Allow dependency tracking option to be overridden
CONFIGUREOPT_DEPTRACK can not be overridden since it is set by = Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
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 6f514294c4..9ccd7d2e2d 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -75,7 +75,7 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
--disable-silent-rules \
${CONFIGUREOPT_DEPTRACK} \
${@append_libtool_sysroot(d)}"
-CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking"
+CONFIGUREOPT_DEPTRACK ?= "--disable-dependency-tracking"
oe_runconf () {