From 745ecf28251d8afe520a0e899b967936eb15b529 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 26 Sep 2021 18:50:32 -0700 Subject: [PATCH] Fix a couple variable typos. --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 9800c84b..74640716 100644 --- a/configure.ac +++ b/configure.ac @@ -255,8 +255,8 @@ __attribute__ ((target("ssse3"))) void more_testing(char* buf, int len) if test x"$enable_simd" = x""; then case "$host_os" in - *linux*) simd_enable=yes ;; - *) simd_enable=no ;; + *linux*) enable_simd=yes ;; + *) enable_simd=no ;; esac fi @@ -320,8 +320,8 @@ AC_ARG_ENABLE(asm, if test x"$enable_asm" = x""; then case "$host_os" in - *linux*) asm_enable=yes ;; - *) asm_enable=no ;; + *linux*) enable_asm=yes ;; + *) enable_asm=no ;; esac fi -- 2.47.2