summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2019-01-14 23:20:09 +0100
committerandroid-build-merger <android-build-merger@google.com>2019-01-14 23:20:09 +0100
commitfed4ded44269af3092f8ef6911e51c14498b9615 (patch)
treea8268c4892317ecb7a494aad95281fbeada21961
parentMerge "Use dynamically linked f2fs executables." am: 22a27f9965 am: ad4ce79b4d (diff)
parentMerge "Create stash dir recursively." am: 7a0b65472b (diff)
downloadandroid_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.tar
android_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.tar.gz
android_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.tar.bz2
android_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.tar.lz
android_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.tar.xz
android_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.tar.zst
android_bootable_recovery-fed4ded44269af3092f8ef6911e51c14498b9615.zip
-rw-r--r--updater/blockimg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/updater/blockimg.cpp b/updater/blockimg.cpp
index 9d5b01734..e35d48368 100644
--- a/updater/blockimg.cpp
+++ b/updater/blockimg.cpp
@@ -53,6 +53,7 @@
#include <ziparchive/zip_archive.h>
#include "edify/expr.h"
+#include "otautil/dirutil.h"
#include "otautil/error_code.h"
#include "otautil/paths.h"
#include "otautil/print_sha1.h"
@@ -878,7 +879,7 @@ static int CreateStash(State* state, size_t maxblocks, const std::string& base)
size_t max_stash_size = maxblocks * BLOCKSIZE;
if (res == -1) {
LOG(INFO) << "creating stash " << dirname;
- res = mkdir(dirname.c_str(), STASH_DIRECTORY_MODE);
+ res = mkdir_recursively(dirname, STASH_DIRECTORY_MODE, false, nullptr);
if (res != 0) {
ErrorAbort(state, kStashCreationFailure, "mkdir \"%s\" failed: %s", dirname.c_str(),