From 525862bc5c5a4bdd07ef71db15249c2a3177aee5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se> Date: Mon, 29 Mar 2010 15:51:37 +0200 Subject: [PATCH] Typo fix in ABI check. Rev: nettle/configure.ac:1.18 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 9d18b771..8d7d3b1b 100644 --- a/configure.ac +++ b/configure.ac @@ -187,14 +187,14 @@ case "$host_cpu" in asm_path=x86 ;; [x86_64 | amd64]) - if test "x$ABI" = 64 ; then + if test "$ABI" = 64 ; then asm_path=x86_64 else asm_path=x86 fi ;; *sparc*) - if test "x$ABI" = 64 ; then + if test "$ABI" = 64 ; then asm_path=sparc64 else asm_path=sparc32 -- GitLab