summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <wiz@gatalith.at>2022-10-18 17:48:24 +0200
committerThomas Klausner <wiz@gatalith.at>2022-10-18 17:48:24 +0200
commitb5b3243792fdfec3e6fabf08bc79f30bc3145742 (patch)
tree35ade1e2d0c138e2fb33f4e7107dc88cbcd4b168
parent7df9e162c69e95d0c1ab06acea06a82df37d0205 (diff)
downloadpixman-b5b3243792fdfec3e6fabf08bc79f30bc3145742.tar.gz
configure.ac: avoid unportable test(1) operator
"==" is only supported by bash, POSIX mandates "=" Signed-off-by: Thomas Klausner <wiz@gatalith.at>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 5dc2561..186a457 100644
--- a/configure.ac
+++ b/configure.ac
@@ -510,7 +510,7 @@ case $host_os in
# binaries aren't flagged as only able to run on MMX/SSE/SSSE3 capable
# CPUs since they check at runtime before using those instructions.
# Not all linkers grok the mapfile format so we check for that first.
- if test "$host_cpu" == "i386" -o "$host_cpu" == "x86_64"; then
+ if test "$host_cpu" = "i386" -o "$host_cpu" = "x86_64"; then
use_hwcap_mapfile=no
AC_MSG_CHECKING(whether to use a hardware capability map file)
hwcap_save_LDFLAGS="$LDFLAGS"