diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-06-27 16:31:16 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2008-06-27 16:31:16 +0000 |
commit | daffccb90a8b62b9245c27bdee388c9e33dce12b (patch) | |
tree | 6b0463f0b94f023aece5e7b828495e0ee7d7844d /classes/image.bbclass | |
parent | 641e45bd5f6eb04f05aa51f828a5d60d0e82a78d (diff) |
image.bbclass: Make sure DEPLOY_DIR_IMAGE exists before running image generation (from Poky)
Diffstat (limited to 'classes/image.bbclass')
-rw-r--r-- | classes/image.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/classes/image.bbclass b/classes/image.bbclass index 6350a733e8..e9c0ecd947 100644 --- a/classes/image.bbclass +++ b/classes/image.bbclass @@ -93,6 +93,7 @@ fakeroot do_rootfs () { set -x rm -rf ${IMAGE_ROOTFS} mkdir -p ${IMAGE_ROOTFS} + mkdir -p ${DEPLOY_DIR_IMAGE} if [ "${USE_DEVFS}" != "1" ]; then for devtable in ${@get_devtable_list(d)}; do |