make/toolchain.sh

changeset 1523
b5c32391802f
parent 1492
cc83ce484bf7
--- a/make/toolchain.sh	Fri Nov 28 15:23:40 2025 +0100
+++ b/make/toolchain.sh	Sun Nov 30 13:29:07 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