diff options
author | Jooyung Han <jooyung@google.com> | 2019-10-16 22:37:10 +0000 |
---|---|---|
committer | Jooyung Han <jooyung@google.com> | 2019-10-16 23:42:56 +0000 |
commit | a365ac10a270974fb248b4a2dada54db526f05cb (patch) | |
tree | 12fd385cd8cc7add3ec2eab0fcf2c43e7c700b16 /linker/linker.cpp | |
parent | e30a7f5d1f00f4571c4a6ea9766fd22a6be27904 (diff) |
Revert "Change linker config variable: VNDK_VER"
This reverts commit e30a7f5d1f00f4571c4a6ea9766fd22a6be27904.
Reason for revert: some targets are broken
Bug: 142773030
Change-Id: I651ef00a9d1aaac6f0119d31712fb588d8aa68f0
Diffstat (limited to 'linker/linker.cpp')
-rw-r--r-- | linker/linker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/linker.cpp b/linker/linker.cpp index cee9c3b31..37a318916 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -4208,7 +4208,7 @@ static std::string get_ld_config_file_vndk_path() { if (insert_pos == std::string::npos) { insert_pos = ld_config_file_vndk.length(); } - ld_config_file_vndk.insert(insert_pos, Config::get_vndk_version_string(".")); + ld_config_file_vndk.insert(insert_pos, Config::get_vndk_version_string('.')); return ld_config_file_vndk; } |