diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2016-01-29 17:04:30 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-31 13:29:48 +0000 |
commit | c6b8227083d8380b79d19573432befb97ce9b299 (patch) | |
tree | b9ac00a3cc8848d570e422ccf81a53d8dc86641e /meta/classes/autotools.bbclass | |
parent | ca0617963acdc88a1b6fbdf8cb19d39265b8f452 (diff) | |
download | poky-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.bbclass | 1 |
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 | ||
123 | autotools_postconfigure(){ | 123 | autotools_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 | } |