From: Wayne Davison Date: Mon, 27 Sep 2021 01:50:32 +0000 (-0700) Subject: Fix a couple variable typos. X-Git-Tag: v3.2.4pre1~62 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=745ecf28251d8afe520a0e899b967936eb15b529;p=thirdparty%2Frsync.git Fix a couple variable typos. --- 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