diff options
Diffstat (limited to 'sysdeps/i386')
-rw-r--r-- | sysdeps/i386/configure | 2 | ||||
-rw-r--r-- | sysdeps/i386/configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/configure b/sysdeps/i386/configure index 9515719daa..5b55c5affe 100644 --- a/sysdeps/i386/configure +++ b/sysdeps/i386/configure @@ -72,7 +72,7 @@ rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_asm_mpx" >&5 $as_echo "$libc_cv_asm_mpx" >&6; } -if test $libc_cv_asm_mpx == yes; then +if test $libc_cv_asm_mpx = yes; then $as_echo "#define HAVE_MPX_SUPPORT 1" >>confdefs.h fi diff --git a/sysdeps/i386/configure.ac b/sysdeps/i386/configure.ac index f8f9e44909..19ef33f34a 100644 --- a/sysdeps/i386/configure.ac +++ b/sysdeps/i386/configure.ac @@ -41,7 +41,7 @@ else libc_cv_asm_mpx=no fi rm -f conftest*]) -if test $libc_cv_asm_mpx == yes; then +if test $libc_cv_asm_mpx = yes; then AC_DEFINE(HAVE_MPX_SUPPORT) fi |