summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2021-06-13 11:16:04 +0800
committerruki <[email protected]>2021-06-13 11:16:04 +0800
commit98d767be3a4504052abb1276d87fe90b2450e93f (patch)
tree5c2479a0fbd9f35bdee310ef796b7e43bfc38ac9
parent8a96a1eeafdd83afa7b1b590d06337a85eb4fba7 (diff)
modify config description
-rw-r--r--xmake/modules/private/action/require/impl/package.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/action/require/impl/package.lua b/xmake/modules/private/action/require/impl/package.lua
index 79ce5b7f9..59ac7abed 100644
--- a/xmake/modules/private/action/require/impl/package.lua
+++ b/xmake/modules/private/action/require/impl/package.lua
@@ -224,7 +224,7 @@ function _add_package_configurations(package)
package:add("configs", "debug", {builtin = true, description = "Enable debug symbols.", default = false, type = "boolean"})
end
if package:config("shared") == nil then
- package:add("configs", "shared", {builtin = true, description = "Enable shared library.", default = false, type = "boolean"})
+ package:add("configs", "shared", {builtin = true, description = "Build shared library.", default = false, type = "boolean"})
end
if package:config("pic") == nil then
package:add("configs", "pic", {builtin = true, description = "Enable the position independent code.", default = true, type = "boolean"})