summaryrefslogtreecommitdiff
path: root/xmake/core/package/package.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2023-01-14 22:22:36 +0800
committerruki <[email protected]>2023-01-14 22:22:36 +0800
commit39c9b4f33db3d41a304fee2b380917713589efbb (patch)
treefce7d72190f0575cce6f50d0277036d445474545 /xmake/core/package/package.lua
parent57b4a29f08d9663684047e89a80615cbac132ff4 (diff)
improve VERILATOR_ROOT
Diffstat (limited to 'xmake/core/package/package.lua')
-rw-r--r--xmake/core/package/package.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/package/package.lua b/xmake/core/package/package.lua
index af7dc3879..a3723661f 100644
--- a/xmake/core/package/package.lua
+++ b/xmake/core/package/package.lua
@@ -934,7 +934,7 @@ function _instance:envs()
if path.is_absolute(value) then
table.insert(newvalues, value)
else
- table.insert(newvalues, path.join(self:installdir(), value))
+ table.insert(newvalues, path.normalize(path.join(self:installdir(), value)))
end
end
values = newvalues