From: j-h.choi Date: Mon, 18 Nov 2024 04:19:18 +0000 (+0900) Subject: Use relative symlink for TAC X-Git-Tag: accepted/tizen/9.0/unified/20250611.103219^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_9.0_unified;p=platform%2Fcore%2Fdotnet%2Flauncher.git Use relative symlink for TAC Change-Id: I5f74ac0d713a91062c638ec299db9ac043a083fb --- 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);