summaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-01-29 17:04:30 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-31 13:29:48 +0000
commitc6b8227083d8380b79d19573432befb97ce9b299 (patch)
treeb9ac00a3cc8848d570e422ccf81a53d8dc86641e /meta/classes/autotools.bbclass
parentca0617963acdc88a1b6fbdf8cb19d39265b8f452 (diff)
downloadpoky-c6b8227083d8380b79d19573432befb97ce9b299.tar.gz
Make sure that the directory for CONFIGURESTAMPFILE exists
(From OE-Core rev: bb82dc384bda48d746634ba1f4e315737993c794) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index 826762d402..abbc782549 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -122,6 +122,7 @@ autotools_preconfigure() {
122 122
123autotools_postconfigure(){ 123autotools_postconfigure(){
124 if [ -n "${CONFIGURESTAMPFILE}" ]; then 124 if [ -n "${CONFIGURESTAMPFILE}" ]; then
125 mkdir -p `dirname ${CONFIGURESTAMPFILE}`
125 echo ${BB_TASKHASH} > ${CONFIGURESTAMPFILE} 126 echo ${BB_TASKHASH} > ${CONFIGURESTAMPFILE}
126 fi 127 fi
127} 128}