about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-02-25 00:29:19 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-25 00:29:19 +0000
commit6b1d1d46b9344dab2fb36734c61dc9d517214a6d (patch)
tree2aeb9167d48d511fe44f324b0a89342c6246f7cc /configure.in
parent0f8bbd69cd95c8350571763d15554b9bc3c62226 (diff)
downloadglibc-6b1d1d46b9344dab2fb36734c61dc9d517214a6d.tar.gz
glibc-6b1d1d46b9344dab2fb36734c61dc9d517214a6d.tar.xz
glibc-6b1d1d46b9344dab2fb36734c61dc9d517214a6d.zip
Fix configure logic for disabling multi-arch.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index af42c8ad2f..335c796c2b 100644
--- a/configure.in
+++ b/configure.in
@@ -598,7 +598,7 @@ if test "x$libc_cv_asm_type_prefix" != xno; then
   AC_DEFINE_UNQUOTED(ASM_TYPE_DIRECTIVE_PREFIX, ${libc_cv_asm_type_prefix})
 fi
 
-if test x"$libc_cv_asm_gnu_indirect_function" != xyes -a x"$libc_cv_asm_type_prefix" = xno; then
+if test x"$libc_cv_asm_gnu_indirect_function" != xyes -o x"$libc_cv_asm_type_prefix" = xno; then
   if test x"$multi_arch" = xyes; then
     AC_MSG_ERROR([--enable-multi-arch support requires assembler and linker support])
   else