From 4410dbdd7fcb1ab5133ece7d77a523189c4996e8 Mon Sep 17 00:00:00 2001 From: Niklas Rosencrantz Date: Fri, 2 Sep 2022 05:12:44 +0200 Subject: [PATCH] Use uname -s since uname -o is not compatible with macOS/Darwin --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 00879451..887470c6 100755 --- a/configure +++ b/configure @@ -58,7 +58,7 @@ test -n "$CC" && cc="$CC" cpu=`uname -m` cpu_sys="$cpu" targetos=`uname` -test "$(uname -o)" = "Android" && targetos=Android +test "$(uname -s)" = "Android" && targetos=Android case $targetos in Darwin) -- 2.11.4.GIT