diff options
| author | xq114 <[email protected]> | 2023-02-16 14:01:05 +0800 |
|---|---|---|
| committer | xq114 <[email protected]> | 2023-02-16 14:01:05 +0800 |
| commit | 559ecc3c028a176bdacb4b2e937ab6da9c9f5c4d (patch) | |
| tree | 6dc2c2e68c220f65da27ea8b81c222fcaf280e7d | |
| parent | 897a25cc365fd9e67354047e9fc7337cc53ab30e (diff) | |
improve comments
| -rw-r--r-- | xmake/modules/package/tools/meson.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/package/tools/meson.lua b/xmake/modules/package/tools/meson.lua index a26564470..f99e20c77 100644 --- a/xmake/modules/package/tools/meson.lua +++ b/xmake/modules/package/tools/meson.lua @@ -419,7 +419,7 @@ end -- install package function install(package, configs, opt) - -- generate build files and build + -- generate build files opt = opt or {} generate(package, configs, opt) @@ -430,7 +430,7 @@ function install(package, configs, opt) table.insert(argv, "-v") end - -- do install + -- do build and install local meson = assert(find_tool("meson"), "meson not found!") os.vrunv(meson, {"install", "-C", buildir}, {envs = opt.envs or buildenvs(package, opt)}) |
