summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-02-15 00:51:32 +0800
committerruki <[email protected]>2024-02-15 00:51:32 +0800
commitd069171eaf399228bac1b2e3c2f6c79f06399bbf (patch)
tree23cf54dfe0ba3ea3ebe1c6df624591390ba13035
parent3a105891797c66149cbb291d4b92285b96be66ae (diff)
update comment
-rw-r--r--xmake/core/base/private/select_script.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/base/private/select_script.lua b/xmake/core/base/private/select_script.lua
index f1fdfe1a7..cac17251f 100644
--- a/xmake/core/base/private/select_script.lua
+++ b/xmake/core/base/private/select_script.lua
@@ -59,7 +59,7 @@ end
-- `android|armeabi-v7a@macosx,linux`
-- `android|armeabi-v7a,iphoneos@macosx,linux|x86_64`
-- `android|armeabi-v7a@linux|x86_64`
--- 'linux|*'
+-- `linux|*`
--
-- excluded pattern:
-- !plat|!arch@!subhost|!subarch
@@ -73,7 +73,7 @@ end
-- `android|!armeabi-v7a@macosx,!linux`
-- `android|armeabi-v7a,!iphoneos@macosx,!linux|x86_64`
-- `!android|armeabi-v7a@!linux|!x86_64`
--- '!linux|*'
+-- `!linux|*`
--
function _match_script(pattern, plat, arch, excluded)
local splitinfo = pattern:split("@", {plain = true})