]> code.ossystems Code Review - openembedded-core.git/commitdiff
autotools.bbclass: Allow dependency tracking option to be overridden
authorRoy Li <rongqing.li@windriver.com>
Wed, 26 Aug 2015 05:51:18 +0000 (13:51 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 30 Aug 2015 11:34:26 +0000 (12:34 +0100)
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>
meta/classes/autotools.bbclass

index 6f514294c4c23231edd07276c749696e3acca2a0..9ccd7d2e2de54dfecb97a532a39c633085f72122 100644 (file)
@@ -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 () {