]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Fix a couple variable typos.
authorWayne Davison <wayne@opencoder.net>
Mon, 27 Sep 2021 01:50:32 +0000 (18:50 -0700)
committerWayne Davison <wayne@opencoder.net>
Mon, 27 Sep 2021 01:50:32 +0000 (18:50 -0700)
configure.ac

index 9800c84b112a7081fc6e63d446c0db2f44841d91..746407169b4c6e68675bbeb3cb72b09326f29b44 100644 (file)
@@ -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