diff options
| author | 2015-06-30 04:34:50 +0000 | |
|---|---|---|
| committer | 2015-06-30 04:34:50 +0000 | |
| commit | ad3d7893784c68287b8295728a54abe01ba2838b (patch) | |
| tree | 4bfc28364e0d50e2bab599767f672144e3652136 | |
| parent | 2e099b24258633ebe884515eb7719bdd82458ff2 (diff) | |
| parent | b5b21d1837ba2039293feb283117e8ee441ec2a8 (diff) | |
am b5b21d18: am fe608c5e: Merge "Fix directory path of codecache." into mnc-dev
* commit 'b5b21d1837ba2039293feb283117e8ee441ec2a8':
Fix directory path of codecache.
| -rw-r--r-- | cmds/installd/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/commands.cpp b/cmds/installd/commands.cpp index faf48efc3d..f2c76d5488 100644 --- a/cmds/installd/commands.cpp +++ b/cmds/installd/commands.cpp @@ -344,7 +344,7 @@ int delete_cache(const char *uuid, const char *pkgname, userid_t userid) int delete_code_cache(const char *uuid, const char *pkgname, userid_t userid) { std::string _codecachedir( - create_data_user_package_path(uuid, userid, pkgname) + CACHE_DIR_POSTFIX); + create_data_user_package_path(uuid, userid, pkgname) + CODE_CACHE_DIR_POSTFIX); const char* codecachedir = _codecachedir.c_str(); struct stat s; |