diff options
Diffstat (limited to 'fastboot/fastboot.cpp')
-rw-r--r-- | fastboot/fastboot.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fastboot/fastboot.cpp b/fastboot/fastboot.cpp index df0f6516e..987ba8356 100644 --- a/fastboot/fastboot.cpp +++ b/fastboot/fastboot.cpp @@ -47,6 +47,7 @@ #include <utility> #include <vector> +#include <android-base/file.h> #include <android-base/macros.h> #include <android-base/parseint.h> #include <android-base/parsenetaddress.h> @@ -116,7 +117,7 @@ static struct { static std::string find_item_given_name(const char* img_name, const char* product) { if(product) { - std::string path = get_my_path(); + std::string path = android::base::GetExecutablePath(); path.erase(path.find_last_of('/')); return android::base::StringPrintf("%s/../../../target/product/%s/%s", path.c_str(), product, img_name); |