Skip to content
Snippets Groups Projects
Commit 525862bc authored by Niels Möller's avatar Niels Möller
Browse files

Typo fix in ABI check.

Rev: nettle/configure.ac:1.18
parent 172f948f
No related branches found
No related tags found
No related merge requests found
...@@ -187,14 +187,14 @@ case "$host_cpu" in ...@@ -187,14 +187,14 @@ case "$host_cpu" in
asm_path=x86 asm_path=x86
;; ;;
[x86_64 | amd64]) [x86_64 | amd64])
if test "x$ABI" = 64 ; then if test "$ABI" = 64 ; then
asm_path=x86_64 asm_path=x86_64
else else
asm_path=x86 asm_path=x86
fi fi
;; ;;
*sparc*) *sparc*)
if test "x$ABI" = 64 ; then if test "$ABI" = 64 ; then
asm_path=sparc64 asm_path=sparc64
else else
asm_path=sparc32 asm_path=sparc32
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment