* autotools.bbclass: Allow dependency tracking option to be easily overridden
@ 2011-10-04 12:38 Richard Purdie
2011-10-04 16:09 ` Khem Raj
0 siblings, 1 reply; 2+ messages in thread
From: Richard Purdie @ 2011-10-04 12:38 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index ff27842..a4ce851 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -64,8 +64,10 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
--infodir=${infodir} \
--mandir=${mandir} \
--disable-silent-rules \
- --disable-dependency-tracking \
+ ${CONFIGUREOPT_DEPTRACK} \
${@append_libtool_sysroot(d)}"
+CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking"
+
oe_runconf () {
if [ -x ${S}/configure ] ; then
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-10-04 16:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-04 12:38 autotools.bbclass: Allow dependency tracking option to be easily overridden Richard Purdie
2011-10-04 16:09 ` Khem Raj
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.