summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2024-02-14 21:38:04 +0800
committerGitHub <[email protected]>2024-02-14 21:38:04 +0800
commit2dc22332518a885e565eb17e97f3bafe405748f4 (patch)
tree54fb9c573cda306f6100a0cc0cf2f97cbf37f6a5
parentc601bfa8240467a0a7d5ba463dd321b2be1d1bdd (diff)
parent3cb45e3806f811916fabcdcb758890d72ca43f62 (diff)
Merge pull request #4736 from Arthapz/fix-depends-diagnosis
fix depend.lua diagnosis
-rw-r--r--xmake/modules/core/project/depend.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/core/project/depend.lua b/xmake/modules/core/project/depend.lua
index 80eb49d3b..22840f09e 100644
--- a/xmake/modules/core/project/depend.lua
+++ b/xmake/modules/core/project/depend.lua
@@ -159,7 +159,7 @@ function is_changed(dependinfo, opt)
for idx, file in ipairs(files) do
if file ~= optfiles[idx] then
if _is_show_diagnosis_info() then
- cprint("${color.warning}[check_build_deps]: file %s != %s at index %d", file, optfiles[subidx], idx)
+ cprint("${color.warning}[check_build_deps]: file %s != %s at index %d", file, optfiles[idx], idx)
end
return true
end