summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMeeSong <[email protected]>2020-05-10 16:59:03 +0800
committerGitHub <[email protected]>2020-05-10 16:59:03 +0800
commite2e80bba1f77db75696236e3ea22a0a9d8f4a9eb (patch)
treef5024f7723df4cf02f1e3eef5d36d5844afb448e
parentf664a46f79bcdab915f9412de7eab3fff55ad3b2 (diff)
Fix #778
fix path stitching error
-rw-r--r--xmake/rules/wdk/mof/xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/wdk/mof/xmake.lua b/xmake/rules/wdk/mof/xmake.lua
index fbd783a61..5e2f25141 100644
--- a/xmake/rules/wdk/mof/xmake.lua
+++ b/xmake/rules/wdk/mof/xmake.lua
@@ -52,7 +52,7 @@ rule("wdk.mof")
-- get wmimofck
local wmimofck = nil
if arch == "x64" then
- wmimofck = path.join(wdk.bindir, wdk.sdkver, "x86", "x64", "wmimofck.exe")
+ wmimofck = path.join(wdk.bindir, wdk.sdkver, "x64", "wmimofck.exe")
else
wmimofck = path.join(wdk.bindir, wdk.sdkver, "x86", "wmimofck.exe")
end