diff options
| author | ruki <[email protected]> | 2020-03-01 11:33:28 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-03-01 11:33:28 +0800 |
| commit | 6018704f4bfdf1906b6a45f4bb92679cefc57629 (patch) | |
| tree | c3e29b11a3050d12a179751d2d811309355a8021 /xmake/rules/wdk | |
| parent | 4a15e79d3d83174b8a81bb192bcb3d86692b2cab (diff) | |
improve os.argw and disable wildcards for os.execv
Diffstat (limited to 'xmake/rules/wdk')
| -rw-r--r-- | xmake/rules/wdk/inf/xmake.lua | 2 | ||||
| -rw-r--r-- | xmake/rules/wdk/tracewpp/xmake.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/xmake/rules/wdk/inf/xmake.lua b/xmake/rules/wdk/inf/xmake.lua index 99422a957..c354c4753 100644 --- a/xmake/rules/wdk/inf/xmake.lua +++ b/xmake/rules/wdk/inf/xmake.lua @@ -100,7 +100,7 @@ rule("wdk.inf") -- update the timestamp os.cp(sourcefile, targetfile) - os.vrunv(stampinf, args, {wildcards = false}) + os.vrunv(stampinf, args) -- update files and values to the dependent file dependinfo.files = {sourcefile} diff --git a/xmake/rules/wdk/tracewpp/xmake.lua b/xmake/rules/wdk/tracewpp/xmake.lua index 383dbf372..fc822b7fc 100644 --- a/xmake/rules/wdk/tracewpp/xmake.lua +++ b/xmake/rules/wdk/tracewpp/xmake.lua @@ -109,7 +109,7 @@ rule("wdk.tracewpp") os.tryrm(targetfile) -- generate the *.tmh file - os.vrunv(tracewpp, args, {wildcards = false}) + os.vrunv(tracewpp, args) -- update files and values to the dependent file dependinfo.files = {sourcefile} |
