From 200de31a85b1cf11835335e54d11fbf7ba017d57 Mon Sep 17 00:00:00 2001 From: "j-h.choi" Date: Mon, 18 Nov 2024 13:19:18 +0900 Subject: [PATCH] Use relative symlink for TAC Change-Id: I5f74ac0d713a91062c638ec299db9ac043a083fb --- NativeLauncher/tool/tac_common.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NativeLauncher/tool/tac_common.cc b/NativeLauncher/tool/tac_common.cc index 99a9f13..191ef83 100644 --- a/NativeLauncher/tool/tac_common.cc +++ b/NativeLauncher/tool/tac_common.cc @@ -260,7 +260,7 @@ tac_error_e disableTACPackage(const std::string& pkgId) } copySmackAndOwnership(binDir.c_str(), niPath.c_str()); std::string dllFile = changeExtension(niPath, ".ni.dll", ".dll"); - bf::create_symlink(niPath, dllFile); + bf::create_symlink(getFileName(niPath), dllFile); copySmackAndOwnership(niPath, dllFile, true); } else { std::string dllPath = concatPath(binDir, fileName); -- 2.34.1