diff options
| author | ruki <[email protected]> | 2017-01-05 12:15:59 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-01-06 17:20:08 +0800 |
| commit | 2e58f26793dc910c024eeba4adb6d52df26e0e22 (patch) | |
| tree | 61703e4e89fc3609a1774871645d5032a74eae6f /xmake/platforms/linux/xmake.lua | |
| parent | 7d17523c795681265900d109c0ee26d2349eaf73 (diff) | |
move checker to on_check
Diffstat (limited to 'xmake/platforms/linux/xmake.lua')
| -rwxr-xr-x | xmake/platforms/linux/xmake.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/platforms/linux/xmake.lua b/xmake/platforms/linux/xmake.lua index 9a64b8918..bfefad521 100755 --- a/xmake/platforms/linux/xmake.lua +++ b/xmake/platforms/linux/xmake.lua @@ -32,9 +32,6 @@ platform("linux") -- set archs set_archs("i386", "x86_64") - -- set checker - set_checker("checker") - -- set tooldirs set_tooldirs("/usr/bin", "/usr/local/bin", "/opt/bin", "/opt/local/bin") @@ -44,6 +41,9 @@ platform("linux") -- on uninstall on_uninstall("uninstall") + -- on check + on_check("check") + -- on load on_load(function () |
