diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-04 13:37:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-06 16:59:40 +0100 |
commit | 5ea73bde5e6697e670280e099eecc2ae6e429219 (patch) | |
tree | 166eb51fe82e7adecc05fc2872dcf1046a3a32ee /meta | |
parent | 0a5ae8c64f0e465dc844952a81b2ce17c2b2d9bc (diff) | |
download | poky-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')
-rw-r--r-- | meta/classes/autotools.bbclass | 4 |
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)}" |
69 | CONFIGUREOPT_DEPTRACK = "--disable-dependency-tracking" | ||
70 | |||
69 | 71 | ||
70 | oe_runconf () { | 72 | oe_runconf () { |
71 | if [ -x ${S}/configure ] ; then | 73 | if [ -x ${S}/configure ] ; then |