summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2019-01-30 22:39:16 +0800
committerruki <[email protected]>2019-01-30 09:55:38 +0800
commit0279ca5f64518a61fd78c655756c931dd147ac09 (patch)
tree6804f4ce543a2000c8632d65dadd423725278c65
parent1405e9461fe3418dc1a967546377dab112a9b835 (diff)
improve conan pacakge path
-rw-r--r--xmake/modules/package/manager/conan/find_package.lua1
-rw-r--r--xmake/modules/package/manager/conan/install_package.lua1
2 files changed, 0 insertions, 2 deletions
diff --git a/xmake/modules/package/manager/conan/find_package.lua b/xmake/modules/package/manager/conan/find_package.lua
index 558a94c02..8c3541866 100644
--- a/xmake/modules/package/manager/conan/find_package.lua
+++ b/xmake/modules/package/manager/conan/find_package.lua
@@ -28,7 +28,6 @@ import("core.project.config")
-- get build info file
function _conan_get_buildinfo_file(name)
- name = name:lower():gsub("::", "_")
return path.absolute(path.join(config.buildir() or os.tmpdir(), ".conan", name, "conanbuildinfo.xmake.lua"))
end
diff --git a/xmake/modules/package/manager/conan/install_package.lua b/xmake/modules/package/manager/conan/install_package.lua
index f3b62d848..607f676a8 100644
--- a/xmake/modules/package/manager/conan/install_package.lua
+++ b/xmake/modules/package/manager/conan/install_package.lua
@@ -29,7 +29,6 @@ import("lib.detect.find_tool")
-- get build directory
function _conan_get_build_directory(name)
- name = name:lower():gsub("::", "_")
return path.absolute(path.join(config.buildir() or os.tmpdir(), ".conan", name))
end