From 47aeda0fb235043acf0b010315d175e67fa4ed00 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Tue, 28 Feb 2023 08:34:08 -0600 Subject: make it simpler to test on a non-Linux system --- scripts/test | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/test b/scripts/test index 0eb2c06..c7200dc 100755 --- a/scripts/test +++ b/scripts/test @@ -1,10 +1,10 @@ #!/bin/sh set -e +set -x unset CC -if type apt-get >/dev/null -then +if type apt-get >/dev/null 2>&1; then sudo apt-get update sudo apt-get install -y cmake ninja-build fi @@ -52,7 +52,9 @@ elif [ "x$ARCH" = "xmingw32" -o "x$ARCH" = "xmingw64" ]; then CPU=x86_64 fi - sudo apt-get install -y mingw-w64 + if ! type i686-w64-mingw32-gcc > /dev/null; then + sudo apt-get install -y mingw-w64 + fi ./configure --host=$CPU-w64-mingw32 make -j 4 -- cgit v1.2.3-55-g6feb