summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-04 13:37:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-06 16:59:40 +0100
commit5ea73bde5e6697e670280e099eecc2ae6e429219 (patch)
tree166eb51fe82e7adecc05fc2872dcf1046a3a32ee /meta/classes/autotools.bbclass
parent0a5ae8c64f0e465dc844952a81b2ce17c2b2d9bc (diff)
downloadpoky-5ea73bde5e6697e670280e099eecc2ae6e429219.tar.gz
autotools.bbclass: Allow dependency tracking option to be easily overridden
(From OE-Core rev: c353a60bd8a6151a3538f0900aff0b5856aa0684) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index ff278423b2..a4ce8519d5 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -64,8 +64,10 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
64 --infodir=${infodir} \ 64 --infodir=${infodir} \
65 --mandir=${mandir} \ 65 --mandir=${mandir} \
66 --disable-silent-rules \ 66 --disable-silent-rules \
67 --disable-dependency-tracking \ 67 ${CONFIGUREOPT_DEPTRACK} \
68 ${@append_libtool_sysroot(d)}" 68 ${@append_libtool_sysroot(d)}"
69CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking"
70
69 71
70oe_runconf () { 72oe_runconf () {
71 if [ -x ${S}/configure ] ; then 73 if [ -x ${S}/configure ] ; then