summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2016-04-28 17:42:16 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-06-29 19:35:56 +0100
commit3a1b40b6855817bf99439481391562acec2f6559 (patch)
treeb22ebd40ccccc8b7355618ab4fa935eb8277e2ee /meta/classes
parent5b6e5ab134628ac473f261431bbfce983c24af1c (diff)
downloadpoky-3a1b40b6855817bf99439481391562acec2f6559.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. (From OE-Core rev: 27fd1bb7969b558864463450e1837c4400a03f9c) (From OE-Core rev: 06c3f9f53f30667854dc431344b94d46a3b23f09) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Armin Kuster <akuster@mvista.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/autotools.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 6649f5df71..e1686206f7 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -77,6 +77,8 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \
77 ${@append_libtool_sysroot(d)}" 77 ${@append_libtool_sysroot(d)}"
78CONFIGUREOPT_DEPTRACK ?= "--disable-dependency-tracking" 78CONFIGUREOPT_DEPTRACK ?= "--disable-dependency-tracking"
79 79
80CACHED_CONFIGUREVARS ?= ""
81
80AUTOTOOLS_SCRIPT_PATH ?= "${S}" 82AUTOTOOLS_SCRIPT_PATH ?= "${S}"
81CONFIGURE_SCRIPT ?= "${AUTOTOOLS_SCRIPT_PATH}/configure" 83CONFIGURE_SCRIPT ?= "${AUTOTOOLS_SCRIPT_PATH}/configure"
82 84