From 2ed40caeb0a46f3a5ffb83b85e136c3289e0ed96 Mon Sep 17 00:00:00 2001 From: ruki Date: Sat, 22 Nov 2025 23:14:22 +0800 Subject: improve configure --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index dc174d9ea..348a14c4b 100755 --- a/configure +++ b/configure @@ -712,7 +712,7 @@ is_host() { # detect host architecture os_arch=`uname -m | tr '[A-Z]' '[a-z]'` -if test_eq "${os_arch}" "i686" "i86pc"; then +if test_eq "${os_arch}" "i686" || test_eq "${os_arch}" "i86pc"; then os_arch="i386" elif test_eq "${os_arch}" "amd64"; then os_arch="x86_64" -- cgit v1.3.1