summaryrefslogtreecommitdiff
path: root/build.c
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-06-06 12:58:03 +0200
committerMitya Selivanov <automainint@guattari.tech>2024-06-06 12:58:03 +0200
commit2aebf2101df539e39c2320d32b1d389271c6cc8a (patch)
tree0e933909cfaca7dfae391f99100e6433aec77e7f /build.c
parent3ae3ed9a17f515f0f0ddd2b82f964720cc051865 (diff)
downloadkit-2aebf2101df539e39c2320d32b1d389271c6cc8a.zip
[build] debug
Diffstat (limited to 'build.c')
-rwxr-xr-xbuild.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.c b/build.c
index 3996846..e2dc8b9 100755
--- a/build.c
+++ b/build.c
@@ -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;
}