diff options
author | Ross Burton <ross.burton@intel.com> | 2016-04-28 17:42:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-06 10:30:55 +0100 |
commit | 27fd1bb7969b558864463450e1837c4400a03f9c (patch) | |
tree | d7fb86df3c8b38bd358da12b5347f8d87a84b62f /meta/classes/autotools.bbclass | |
parent | f0220cd4e686c3d28d222d434f2dbd7f0b41188c (diff) | |
download | openembedded-core-contrib-27fd1bb7969b558864463450e1837c4400a03f9c.tar.gz |
autotools: add default for CACHED_CONFIGUREVARS
Ensure that this variable has a default value so that we don't get debug
messages that the variable couldn't be expanded.
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, 2 insertions, 0 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 22880cc5e18..c92ca789973 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -77,6 +77,8 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \ ${@append_libtool_sysroot(d)}" CONFIGUREOPT_DEPTRACK ?= "--disable-dependency-tracking" +CACHED_CONFIGUREVARS ?= "" + AUTOTOOLS_SCRIPT_PATH ?= "${S}" CONFIGURE_SCRIPT ?= "${AUTOTOOLS_SCRIPT_PATH}/configure" |