diff options
| -rw-r--r-- | xmake/modules/private/action/require/impl/package.lua | 2 |
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"}) |
