diff options
author | Roy Li <rongqing.li@windriver.com> | 2015-08-26 13:51:18 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-30 12:36:06 +0100 |
commit | 6874f5e72f8f57d2118de25ed0bec7406d277faf (patch) | |
tree | b92d4a159bbe5674fc6bb2c6aafee62c3c2a32b5 /meta/classes/autotools.bbclass | |
parent | 4292352f006b4a0f812360def04b3bcd858b9530 (diff) | |
download | poky-6874f5e72f8f57d2118de25ed0bec7406d277faf.tar.gz |
autotools.bbclass: Allow dependency tracking option to be overridden
CONFIGUREOPT_DEPTRACK can not be overridden since it is set by =
(From OE-Core rev: 758abeb219520ab5556186babcdb7e6660ce6e40)
Signed-off-by: Roy Li <rongqing.li@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-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 6f514294c4..9ccd7d2e2d 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -75,7 +75,7 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \ | |||
75 | --disable-silent-rules \ | 75 | --disable-silent-rules \ |
76 | ${CONFIGUREOPT_DEPTRACK} \ | 76 | ${CONFIGUREOPT_DEPTRACK} \ |
77 | ${@append_libtool_sysroot(d)}" | 77 | ${@append_libtool_sysroot(d)}" |
78 | CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking" | 78 | CONFIGUREOPT_DEPTRACK ?= "--disable-dependency-tracking" |
79 | 79 | ||
80 | 80 | ||
81 | oe_runconf () { | 81 | oe_runconf () { |