make/toolchain.sh

changeset 289
237cb9038109
parent 285
dc13730ff1ec
--- a/make/toolchain.sh	Sun Nov 16 23:02:11 2025 +0100
+++ b/make/toolchain.sh	Sun Nov 30 16:52:33 2025 +0100
@@ -24,7 +24,9 @@
 
 check_c_compiler()
 {
-  if ! command -v "$1" >/dev/null 2>&1 ; then
+  if command -v "$1" >/dev/null 2>&1 ; then
+    :
+  else
     return 1
   fi
   cat > "$TEMP_DIR/test.c" << __EOF__
@@ -55,7 +57,9 @@
 
 check_cpp_compiler()
 {
-  if ! command -v "$1" >/dev/null 2>&1 ; then
+  if command -v "$1" >/dev/null 2>&1 ; then
+    :
+  else
     return 1
   fi
   cat > "$TEMP_DIR/test.cpp" << __EOF__

mercurial