summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/core/base/path.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/base/path.lua b/xmake/core/base/path.lua
index 3dfb90b2a..ff156c150 100644
--- a/xmake/core/base/path.lua
+++ b/xmake/core/base/path.lua
@@ -125,7 +125,7 @@ end
-- concat two paths
function _instance:__concat(other)
- return path.new(path.join(self:str(), tostring(other)), self._TRANSFORM)
+ return path.join(tostring(self), tostring(other))
end
-- tostring(path)