diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 12:58:03 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2024-06-06 12:58:03 +0200 |
commit | 2aebf2101df539e39c2320d32b1d389271c6cc8a (patch) | |
tree | 0e933909cfaca7dfae391f99100e6433aec77e7f | |
parent | 3ae3ed9a17f515f0f0ddd2b82f964720cc051865 (diff) | |
download | kit-2aebf2101df539e39c2320d32b1d389271c6cc8a.zip |
[build] debug
-rwxr-xr-x | build.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -144,7 +144,7 @@ b8 str_eq(c8 const *a, c8 const *b) { b8 check_compiler(c8 const *name) { if (str_eq_lower(name, "cl") || str_eq_lower(name, "cl.exe")) { - if (system(fmt("%s /?", name)) != 0) + if (system(fmt("%s", name)) != 0) return 0; return 1; } |